21 lines
370 B
Nix
Raw Normal View History

2024-11-08 01:21:28 +03:00
{
sops = {
age.keyFile = "/root/age.key";
2024-12-17 14:22:31 +03:00
secrets = {
vpn_bolt = {
format = "binary";
sopsFile = ./vpn_bolt.db;
};
syncthing_cert = {
format = "binary";
sopsFile = ./syncthing_cert.pem;
};
syncthing_key = {
format = "binary";
sopsFile = ./syncthing_key.pem;
};
2024-11-08 01:21:28 +03:00
};
};
}