2025-02-06 11:58:03 +01:00
|
|
|
{
|
2025-02-13 22:32:30 +01:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./modules.nix
|
|
|
|
./services.nix
|
|
|
|
./programs.nix
|
|
|
|
./users.nix
|
|
|
|
./networking.nix
|
|
|
|
./fonts.nix
|
|
|
|
];
|
2025-02-06 11:58:03 +01:00
|
|
|
|
2025-02-13 22:32:30 +01:00
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
2025-02-18 18:39:22 +01:00
|
|
|
options = "--delete-older-than 7d";
|
2025-02-13 22:32:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2025-02-06 11:58:03 +01:00
|
|
|
|
2025-02-13 22:32:30 +01:00
|
|
|
swapDevices = [
|
|
|
|
{
|
|
|
|
device = "/swap";
|
|
|
|
size = 8192;
|
|
|
|
}
|
|
|
|
];
|
2025-02-06 11:58:03 +01:00
|
|
|
}
|