nixos/hosts/hulk/default.nix

22 lines
345 B
Nix
Raw Normal View History

2025-02-06 11:58:03 +01:00
{
imports = [
./hardware-configuration.nix
./modules.nix
./services.nix
./programs.nix
./users.nix
./networking.nix
./fonts.nix
];
2025-02-13 19:52:15 +01:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2025-02-06 11:58:03 +01:00
nixpkgs.config.allowUnfree = true;
swapDevices = [
{
device = "/swap";
size = 8192;
}
];
}