diff options
author | Alan Pearce | 2019-07-25 12:34:49 +0200 |
---|---|---|
committer | Alan Pearce | 2019-07-25 12:34:49 +0200 |
commit | e6e92c12ae75663c4cc45502031056d7b94ea8d5 (patch) | |
tree | 98b68907dea5faa5aff2834ddc938acac17dcade | |
parent | 149d6bbdd0a8e96a896310de49317d402b5be733 (diff) | |
download | nixos-configuration-e6e92c12ae75663c4cc45502031056d7b94ea8d5.tar.lz nixos-configuration-e6e92c12ae75663c4cc45502031056d7b94ea8d5.tar.zst nixos-configuration-e6e92c12ae75663c4cc45502031056d7b94ea8d5.zip |
Nix: decrease lifetime of old configurations
-rw-r--r-- | modules/configuration/nix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/configuration/nix.nix b/modules/configuration/nix.nix index 1a06430..8dc334a 100644 --- a/modules/configuration/nix.nix +++ b/modules/configuration/nix.nix @@ -9,7 +9,7 @@ autoOptimiseStore = true; gc = { automatic = true; - options = "--delete-older-than 30d"; + options = "--delete-older-than 14d"; }; }; |