From 6467771227d10632f06bf88f197cbbfd52644189 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Mon, 26 Jun 2023 12:05:42 +0200 Subject: [PATCH] [Services] Add waypipe to system packages --- services.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/services.nix b/services.nix index f9da388..8f5869c 100644 --- a/services.nix +++ b/services.nix @@ -56,9 +56,6 @@ in { startWhenNeeded = true; }; - # Better reliability and performance - services.dbus.implementation = "broker"; - systemd.services."ssh-inhibit-sleep@" = { description = "Inhibit sleep when SSH connections are active"; bindsTo = [ "sshd@%i.service" ]; @@ -75,6 +72,13 @@ in { programs.ssh.setXAuthLocation = config.services.xserver.enable; programs.ssh.forwardX11 = mkDefault config.services.xserver.enable; security.pam.services.sudo.forwardXAuth = mkDefault true; # Easier to start GUI programs as root + + environment.systemPackages = with pkgs; [ waypipe ]; + + + # Better reliability and performance + services.dbus.implementation = "broker"; +