summaryrefslogtreecommitdiffstats
path: root/hosts/T430/wg.nix
blob: 00023b9659ea3107891812cc4c91c878b04d3472 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ 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;
		wg0.autostart = false;
		wg1.autostart = false;
	};
}