diff --git a/hosts/apu/configuration.nix b/hosts/apu/configuration.nix index dd46548..fd5ab08 100644 --- a/hosts/apu/configuration.nix +++ b/hosts/apu/configuration.nix @@ -116,6 +116,19 @@ in networking.hostName = "apu"; networking.useNetworkd = true; + nix = { + settings = { + experimental-features = [ "nix-command" "flakes" ]; + auto-optimise-store = true; + }; + + gc = { + automatic = true; + dates = "daily"; + options = "--delete-older-than 7d"; + }; + }; + systemd.network = { enable = true; config.networkConfig.IPv6Forwarding = true;