infrastructure/external/netbox/secrets/default.nix

15 lines
162 B
Nix
Raw Normal View History

{
pkgs,
config,
lib,
...
}: {
age.secrets = {
"netbox" = {
file = ./netbox.age;
group = "netbox";
owner = "netbox";
};
};
}