diff options
author | Soispha <soispha@vhack.eu> | 2023-04-13 05:55:00 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:34 +0200 |
commit | 56c521f068d3c4687cb92d59096e30cb2f3a4cda (patch) | |
tree | 7b801c246ff3ff3131a112988278be5e0b23f0be /system/services | |
parent | Feat(hm/conf/neomutt): Add fetch-mail bind (diff) | |
download | nixos-config-56c521f068d3c4687cb92d59096e30cb2f3a4cda.tar.gz nixos-config-56c521f068d3c4687cb92d59096e30cb2f3a4cda.zip |
Fix(system): Disable timer activated systemd services
Diffstat (limited to 'system/services')
-rw-r--r-- | system/services/backup/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/services/backup/default.nix b/system/services/backup/default.nix index 49cf07fb..20e080b0 100644 --- a/system/services/backup/default.nix +++ b/system/services/backup/default.nix @@ -44,6 +44,7 @@ in { config = lib.mkIf cfg.enable { systemd = { services.backup = { + wantedBy = lib.mkForce []; unitConfig = { Description = "Backup the last snapshots of the persitent-storage subvolume."; }; |