From 37e2708326af99134682cf07153646a81f421890 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Mon, 23 Mar 2026 10:32:07 +0100 Subject: [PATCH] Add wireguard tools --- systems/gandalf/default.nix | 1 + systems/modules/wireguard.nix | 7 +++++++ systems/work/default.nix | 1 + 3 files changed, 9 insertions(+) create mode 100644 systems/modules/wireguard.nix diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index 886ff0f..2f12f5a 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -19,6 +19,7 @@ ../modules/kdenlive.nix ../modules/audacity.nix ../modules/ollama.nix + ../modules/wireguard.nix ]; boot.loader.systemd-boot.enable = true; diff --git a/systems/modules/wireguard.nix b/systems/modules/wireguard.nix new file mode 100644 index 0000000..0e940b9 --- /dev/null +++ b/systems/modules/wireguard.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + wireguard-tools + ]; +} diff --git a/systems/work/default.nix b/systems/work/default.nix index 5b17227..68e8fe6 100644 --- a/systems/work/default.nix +++ b/systems/work/default.nix @@ -16,6 +16,7 @@ ../modules/teams-for-linux.nix ../modules/azure-data-studio.nix ../modules/filezilla.nix + ../modules/wireguard.nix ]; boot.loader.systemd-boot.enable = true;