diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-19 13:50:46 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-19 13:50:46 -0500 |
| commit | 2ee65ec0284d43e51622fbe531c1b9fb7eaf9b1f (patch) | |
| tree | 99bac86705c326a9f6d9a577deeec4170b31bf45 /hosts/T495/wg.nix | |
| parent | 44653c6a5794801abb6a6fc0151b04c24e053b09 (diff) | |
| download | nixos-2ee65ec0284d43e51622fbe531c1b9fb7eaf9b1f.tar.xz nixos-2ee65ec0284d43e51622fbe531c1b9fb7eaf9b1f.zip | |
wg on T495 and install dconf for home-manager gtk theme
Diffstat (limited to 'hosts/T495/wg.nix')
| -rw-r--r-- | hosts/T495/wg.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/T495/wg.nix b/hosts/T495/wg.nix index 3881b63..7b98ad8 100644 --- a/hosts/T495/wg.nix +++ b/hosts/T495/wg.nix @@ -1,7 +1,9 @@ { config, pkgs, inputs, ... }: { - sops.secrets.wg0.sopsFile = ./resources/secrets/wg0.yaml; + 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; }; } |
