diff --git a/hosts/puter/default.nix b/hosts/puter/default.nix index 871a465..b1bd13b 100644 --- a/hosts/puter/default.nix +++ b/hosts/puter/default.nix @@ -7,6 +7,7 @@ ./hardware-configuration.nix ./syncthing.nix ./packages.nix + ./wireguard.nix #./remotebuild_user.nix # DE ../../modules/de/multiple-dms.nix diff --git a/hosts/puter/wireguard.nix b/hosts/puter/wireguard.nix new file mode 100644 index 0000000..1c33ab4 --- /dev/null +++ b/hosts/puter/wireguard.nix @@ -0,0 +1,9 @@ +{ + config, + pkgs, + ... +}: { + environment.systemPackages = with pkgs; [ + wireguard + ]; +}