From a5407c8129db8176709b263fff02b18723a4ef4f Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Tue, 8 Apr 2025 23:37:27 +0200 Subject: [PATCH 1/2] fix --- common/gc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }; } From 7c03785324fa2320ed973f6da2cb25c0bd3fe7e0 Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Tue, 8 Apr 2025 23:40:42 +0200 Subject: [PATCH 2/2] fix --- hosts/headful/work/syncthing.nix | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 hosts/headful/work/syncthing.nix 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; +}