From fd6abfc50d79c893e5161ecb8ccba2afdeaa5310 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 4 Apr 2023 12:49:27 -0500 Subject: [PATCH] fix --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ca7fc93..f370375 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"; } ];