Files
nixverse/nodes/hosts/common/system/sops.nix
2025-07-12 09:47:28 -04:00

12 lines
198 B
Nix

{ config, inputs, lib, ... }: {
sops = {
defaultSopsFile = ../../../../private/secrets.yaml;
secrets = {
jay_password_hash = {
neededForUsers = true;
};
};
};
}