From 5c19fae7e7104e8c4b4355b1a4ef1124df149b02 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 27 Feb 2025 20:45:56 +0300 Subject: [PATCH] feat: add best to resticHosts --- 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 4c9fd4a..69aeea3 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 [ "cube" "disk" "nine" ]; + options.services.restic.hosts = mkConst <| remove config.networking.hostName [ "cube" "disk" "nine" "best" ]; config.secrets.resticPassword.file = mkIf config.isServer ./password.age;