infrastructure/external/netbox/secrets/default.nix
sinavir e91b0c81f1
All checks were successful
npins update / npins_update (push) Successful in 54s
feat(external services): add netbox config
2023-12-17 12:03:07 +01:00

14 lines
162 B
Nix

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