Files
nixos/base/secrets.nix

19 lines
250 B
Nix

{
config,
lib,
pkgs,
pkgsUnstable,
inputs,
...
}:
with lib;
{
config = {
sops.defaultSopsFile = ./secrets/secrets.yaml;
sops.defaultSopsFormat = "yaml";
sops.age.keyFile = "/home/etorres/.config/sops/age/keys.txt";
};
}