nixos/hosts/hulk/default.nix

29 lines
451 B
Nix

{
imports = [
./hardware-configuration.nix
./modules.nix
./users.nix
./networking.nix
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
nixpkgs.config.allowUnfree = true;
swapDevices = [
{
device = "/swap";
size = 8192;
}
];
}