diff --git a/common/gc.nix b/common/gc.nix index 94476f7..62342bb 100644 --- a/common/gc.nix +++ b/common/gc.nix @@ -2,6 +2,6 @@ nix.gc = { automatic = true; dates = "daily"; - options = "--delete-older-than 1w"; + options = "--delete-older-than 7d"; }; } diff --git a/hosts/headful/work/syncthing.nix b/hosts/headful/work/syncthing.nix new file mode 100644 index 0000000..25c60a0 --- /dev/null +++ b/hosts/headful/work/syncthing.nix @@ -0,0 +1,3 @@ +{lib, ...}: { + services.syncthing.enable = lib.mkForce false; +}