21 lines
404 B
Nix
21 lines
404 B
Nix
{
|
|
sops.secrets = {
|
|
wireguard = {
|
|
format = "binary";
|
|
sopsFile = ./wireguard;
|
|
};
|
|
#wireguard-preshared = {
|
|
# format = "yaml";
|
|
# sopsFile = ./wireguard.yaml;
|
|
#};
|
|
wireguard-private = {
|
|
format = "yaml";
|
|
sopsFile = ./wireguard.yaml;
|
|
key = "PrivateKey";
|
|
};
|
|
cloudflare = {
|
|
format = "binary";
|
|
sopsFile = ./cloudflare;
|
|
};
|
|
};
|
|
}
|