22 lines
373 B
Nix
22 lines
373 B
Nix
|
{
|
||
|
age.secrets = {
|
||
|
user-daniel-password = {
|
||
|
file = ./user/danielPassword.age;
|
||
|
};
|
||
|
|
||
|
acme-credentials = {
|
||
|
file = ./acme/credentials.age;
|
||
|
owner = "acme";
|
||
|
group = "acme";
|
||
|
};
|
||
|
|
||
|
tailscale-authkey = {
|
||
|
file = ./tailscale/authkey.age;
|
||
|
};
|
||
|
|
||
|
weewx-proxy-environment = {
|
||
|
file = ./weewx-proxy/environment.age;
|
||
|
};
|
||
|
};
|
||
|
}
|