From f86b770954dab28f53b7ab5f7d7025a7e454a4e4 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 4 Apr 2023 11:30:32 -0500 Subject: [PATCH] fix --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3498a90..f2a3947 100644 --- a/flake.nix +++ b/flake.nix @@ -207,7 +207,7 @@ package ]; - environment.etc."restic/password" = lib.mkIf cfg.password != null { + environment.etc."restic/password" = lib.mkIf (cfg.password != null) { text = cfg.password; user = "root"; group = "root";