Files
nix-config/hosts/helios/default.nix
Jordan Holt a2138e3d8d
Some checks failed
Check flake / build-amd64-linux (push) Failing after 31s
treewide: remove gnome
2026-01-11 21:53:16 +00:00

48 lines
745 B
Nix

{
pkgs,
...
}:
{
imports = [
./hardware-configuration.nix
../desktop.nix
../../users/jordan
];
nixpkgs.hostPlatform = "x86_64-linux";
age.rekey.hostPubkey = ./ssh_host_ed25519_key.pub;
boot = {
loader.grub = {
enable = true;
device = "/dev/sda";
zfsSupport = true;
};
};
networking = {
hostId = "47d23505";
networkmanager.enable = true;
};
environment.systemPackages = [
pkgs.moonlight-qt
];
modules = {
services = {
borgmatic = {
enable = true;
directories = [
"/home/jordan/Documents"
];
repoPath = "ssh://b9cjl9hq@b9cjl9hq.repo.borgbase.com/./repo";
};
};
};
system.stateVersion = "22.11";
}