diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-07-22 09:26:49 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-07-22 09:26:49 -0700 |
commit | 8674fa578c89395c0527aff3461ea8eca9c810ec (patch) | |
tree | c6d2e5a42a0217da5041ef5a0c7f1c2202efd136 /hosts/common | |
parent | 4ebac1b8677d5a5e1807703baf9b76260611228f (diff) | |
download | nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar.gz nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar.bz2 nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar.lz nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar.xz nix-8674fa578c89395c0527aff3461ea8eca9c810ec.tar.zst nix-8674fa578c89395c0527aff3461ea8eca9c810ec.zip |
Fix incorrectly specified option
Diffstat (limited to '')
-rw-r--r-- | hosts/common/core/nix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/common/core/nix.nix b/hosts/common/core/nix.nix index dfcbd5c..2b77378 100644 --- a/hosts/common/core/nix.nix +++ b/hosts/common/core/nix.nix @@ -32,7 +32,7 @@ dates = "weekly"; randomizedDelaySec = "14m"; # Keep the last 2 generations - options = "--delete-older-than +2"; + options = "--delete-older-than 10"; }; }; |