From 98e7de340fe3f7c43d60ae7dcebe0c308c9c8785 Mon Sep 17 00:00:00 2001 From: kenny Date: Mon, 29 Dec 2025 19:19:13 +0200 Subject: [PATCH] Added wireguard to puter - no config --- hosts/puter/default.nix | 1 + hosts/puter/wireguard.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 hosts/puter/wireguard.nix 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 + ]; +}