15 lines
162 B
Nix
15 lines
162 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
age.secrets = {
|
||
|
"netbox" = {
|
||
|
file = ./netbox.age;
|
||
|
group = "netbox";
|
||
|
owner = "netbox";
|
||
|
};
|
||
|
};
|
||
|
}
|