diff --git a/nixos/common/global/nix.nix b/nixos/common/global/nix.nix index 22ebea3..af81859 100644 --- a/nixos/common/global/nix.nix +++ b/nixos/common/global/nix.nix @@ -9,7 +9,7 @@ # Automatically run the garbage collector an a specified time. automatic = true; dates = "weekly"; - options = "--delete-older-than 30d"; + options = "--delete-older-than 14d"; }; # This will add each flake input as a registry diff --git a/nixos/fuchsia/hardware-configuration.nix b/nixos/fuchsia/hardware-configuration.nix index 99dcb7a..86906a8 100644 --- a/nixos/fuchsia/hardware-configuration.nix +++ b/nixos/fuchsia/hardware-configuration.nix @@ -35,7 +35,10 @@ efiSysMountPoint = "/boot"; canTouchEfiVariables = true; }; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 3; + }; }; };