summaryrefslogtreecommitdiff
path: root/hosts/toaster/secrets.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/toaster/secrets.nix')
-rw-r--r--hosts/toaster/secrets.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/hosts/toaster/secrets.nix b/hosts/toaster/secrets.nix
new file mode 100644
index 0000000..4cf23d7
--- /dev/null
+++ b/hosts/toaster/secrets.nix
@@ -0,0 +1,20 @@
+{ config, ... }:
+{
+ sops.defaultSopsFile = ../../secrets/toaster/secrets.yaml;
+ sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
+
+ sops.secrets = {
+ "wg/zw" = {
+ owner = config.users.users.systemd-network.name;
+ };
+ "wg/dvb" = {
+ owner = config.users.users.systemd-network.name;
+ };
+ "wg/mullvad" = {
+ owner = config.users.users.systemd-network.name;
+ };
+ "wg/oxalab" = {
+ owner = config.users.users.systemd-network.name;
+ };
+ };
+}