21 lines
359 B
Nix
21 lines
359 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;
|
|
};
|
|
|
|
wireguard-config = {
|
|
file = ./wireguard/config.age;
|
|
};
|
|
};
|
|
}
|