summaryrefslogtreecommitdiff
path: root/hosts/sweetiepc/wg.nix
blob: bf459d9573f592fa8d4e787c949ae69ceb5683da (plain)
1
2
3
4
5
6
7
{ config, pkgs, inputs, ... }: {
	sops.secrets.wg0 = { sopsFile = ./resources/secrets/wg.yaml; key = "wg0"; };

	networking.wg-quick.interfaces = {
		wg0.configFile = config.sops.secrets.wg0.path;
	};
}