nixos/secrets.nix
Ivan Bushchik d5120c1d22
Enable NGINX proxying on rubusidaeus
Setup NGINX proxying for iva.bz and ивабус.рф

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-10-27 12:29:45 +03:00

12 lines
454 B
Nix

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