From 7c3bdd22a7b79df4b4ba403fffafc75f7c5280b9 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Fri, 27 Mar 2026 11:35:53 +0100 Subject: [PATCH] Add waypipe --- systems/gandalf/default.nix | 1 + systems/modules/waypipe.nix | 8 ++++++++ systems/work/default.nix | 1 + 3 files changed, 10 insertions(+) create mode 100644 systems/modules/waypipe.nix diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index a52b44e..f2b9291 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -21,6 +21,7 @@ ../modules/ollama.nix ../modules/wireguard.nix ../modules/rdp.nix + ../modules/waypipe.nix ]; boot.loader.systemd-boot.enable = true; diff --git a/systems/modules/waypipe.nix b/systems/modules/waypipe.nix new file mode 100644 index 0000000..b924f08 --- /dev/null +++ b/systems/modules/waypipe.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + waypipe + ]; +} + diff --git a/systems/work/default.nix b/systems/work/default.nix index c0989e4..750ee2e 100644 --- a/systems/work/default.nix +++ b/systems/work/default.nix @@ -20,6 +20,7 @@ ../modules/remmina.nix ../modules/postman.nix ../modules/gimp.nix + ../modules/waypipe.nix ]; boot.loader.systemd-boot.enable = true;