From e4ef156f0dc45d42fd929d89413bbdb8cbf9d1c5 Mon Sep 17 00:00:00 2001 From: xqtc <tila@heroin.trade> Date: Sun, 10 Nov 2024 15:29:18 +0100 Subject: [PATCH] some config tweaks/cleanup --- common/syncthing.nix | 2 +- hosts/gc.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common/syncthing.nix b/common/syncthing.nix index 066947c..3260e06 100644 --- a/common/syncthing.nix +++ b/common/syncthing.nix @@ -5,7 +5,7 @@ ... }: { services.syncthing = { - enable = true; + enable = false; user = "xqtc"; dataDir = "/home/xqtc/syncthing"; overrideDevices = false; diff --git a/hosts/gc.nix b/hosts/gc.nix index 4ddb1b5..e9ccfcd 100644 --- a/hosts/gc.nix +++ b/hosts/gc.nix @@ -1,7 +1,7 @@ {config, ...}: { - nix.gc = { - automatic = true; - dates = "daily"; - options = "--delete-older-than 10d"; - }; + # nix.gc = { + # automatic = true; + # dates = "daily"; + # options = "--delete-older-than 10d"; + # }; }