From 0a0ea5082861dc91bbc1c9ea626f7dba3152c56f Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 4 Apr 2023 12:46:35 -0500 Subject: [PATCH] fix --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6b3dbb2..ca7fc93 100644 --- a/flake.nix +++ b/flake.nix @@ -194,7 +194,7 @@ lib.mkIf cfg.enable { assertions = [ { - assertion = cfg.passwordFile != null && cfg.password != null; + assertion = cfg.passwordFile == null && cfg.password == null; message = "Must specifiy either passwordFile or password"; } ];