secrets.nix: Edit secrets abort message

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
Ivan Bushchik 2023-10-03 22:14:50 +03:00
parent f916ffb2b4
commit e4fb67d8eb
No known key found for this signature in database
GPG key ID: 2F16FBF3262E090C

View file

@ -4,7 +4,7 @@ let
expectedHash =
"bc6f38a927602241c5e0996b61ebd3a90d5356ca76dc968ec14df3cd45c6612c";
in if (canaryHash != expectedHash && config.my.features.secrets) then
abort "Secrets are not readable. Have you run `git-crypt unlock`?"
abort "Secrets are enabled and not readable. Have you run `git-crypt unlock`?"
else {
hashed-password = builtins.readFile ./secrets/hashed-password;
}