diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-03-30 22:44:35 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-03-30 22:44:35 -0500 |
| commit | d09ec6c6a3260ce3c320ce2e3f252e7fb50eef55 (patch) | |
| tree | 04ac8f02d3c13fd6a50cc3bcef6566fdf5837092 /hosts/poweredge/wg1.nix | |
| parent | 369e8b83f082f3ac2d3f6a040c0efafe981642a7 (diff) | |
| download | nixos-d09ec6c6a3260ce3c320ce2e3f252e7fb50eef55.tar.xz nixos-d09ec6c6a3260ce3c320ce2e3f252e7fb50eef55.zip | |
add wg1 for poweredge and masquerade for wg1 etc
Diffstat (limited to 'hosts/poweredge/wg1.nix')
| -rw-r--r-- | hosts/poweredge/wg1.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/poweredge/wg1.nix b/hosts/poweredge/wg1.nix new file mode 100644 index 0000000..d94efb6 --- /dev/null +++ b/hosts/poweredge/wg1.nix @@ -0,0 +1,7 @@ +{ config, pkgs, inputs, ... }: { + sops.secrets.wg1.sopsFile = ./resources/secrets/wg1.yaml; + + networking.wg-quick.interfaces = { + wg1.configFile = config.sops.secrets.wg1.path; + }; +} |
