summaryrefslogtreecommitdiff
path: root/hosts/T495/wg.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/T495/wg.nix')
-rw-r--r--hosts/T495/wg.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/hosts/T495/wg.nix b/hosts/T495/wg.nix
deleted file mode 100644
index 7b98ad8..0000000
--- a/hosts/T495/wg.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ config, pkgs, inputs, ... }: {
- sops.secrets.wg0 = { sopsFile = ./resources/secrets/wg.yaml; key = "wg0"; }; # Office
- sops.secrets.wg1 = { sopsFile = ./resources/secrets/wg.yaml; key = "wg1"; }; # Home
-
- networking.wg-quick.interfaces = {
- wg0.configFile = config.sops.secrets.wg0.path;
- wg1.configFile = config.sops.secrets.wg1.path;
- };
-}