diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2021-07-12 06:33:16 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2021-07-12 06:33:16 -0400 |
commit | 8fb2e0b877ec84e3fe5162aa3113b3ee4b61e112 (patch) | |
tree | 2bcd0cdc7c55eb0afc6bcde2437648bb01fd814a | |
parent | b71560b1ecb4a89acb1417e654e9a74b90337fdc (diff) |
update
-rw-r--r-- | machines/gutter.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/machines/gutter.nix b/machines/gutter.nix index 8e2c0c6..c5d3acf 100644 --- a/machines/gutter.nix +++ b/machines/gutter.nix @@ -8,6 +8,9 @@ orbekk.simple-firewall.enable = true; orbekk.simple-firewall.allowedTCPPorts = [ 22 ]; + nix.gc.automatic = true; + nix.gc.options = "--delete-older-than 14d"; + networking.hostName = "gutter"; networking.useDHCP = false; @@ -20,8 +23,8 @@ boot.loader.efi.canTouchEfiVariables = true; boot.loader.grub.enable = true; - boot.loader.grub.version = 2; boot.loader.grub.device = "nodev"; + boot.loader.grub.configurationLimit = 2; boot.loader.grub.efiSupport = true; boot.loader.grub.extraConfig = '' GRUB_TERMINAL="serial" |