From 63b5c41b96e37ed18fef8cb2ba9fc70abbb0a6ec Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 1 May 2025 01:53:07 +0300 Subject: [PATCH] feat: don't back up to disk host --- modules/linux/restic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/linux/restic/default.nix b/modules/linux/restic/default.nix index fc169e6..5834311 100644 --- a/modules/linux/restic/default.nix +++ b/modules/linux/restic/default.nix @@ -1,7 +1,7 @@ { config, lib, ... }: let inherit (lib) genAttrs mkConst mkIf remove; in{ - options.services.restic.hosts = mkConst <| remove config.networking.hostName [ "disk" "nine" "best" ]; + options.services.restic.hosts = mkConst remove config.networking.hostName [ "nine" "best" ]; config.secrets.resticPassword.file = mkIf config.isServer ./password.age;