20 lines
414 B
Nix
20 lines
414 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
let
|
|
canaryHash = builtins.hashFile "sha256" ./canary;
|
|
expectedHash =
|
|
"9df8c065663197b5a1095122d48e140d3677d860343256abd5ab6e4fb4c696ab";
|
|
in
|
|
if canaryHash != expectedHash then
|
|
abort "Secrets are not readable. Have you run `git-crypt unlock`?"
|
|
else {
|
|
options.my.secrets = mkOption {
|
|
type = types.attrs;
|
|
};
|
|
|
|
config.my.secrets = {
|
|
# Home-manager secrets go here
|
|
};
|
|
}
|