From 63ee4338e514192723a548e1932c091a84fe67fb Mon Sep 17 00:00:00 2001 From: Daryl Ronningen Date: Sun, 5 Jan 2025 20:36:06 -0800 Subject: [PATCH] fix some systemd services and add pasystray and nm-applet --- home/modules/desktop/environments/hyprland.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/home/modules/desktop/environments/hyprland.nix b/home/modules/desktop/environments/hyprland.nix index de6504e..29516ad 100644 --- a/home/modules/desktop/environments/hyprland.nix +++ b/home/modules/desktop/environments/hyprland.nix @@ -483,6 +483,9 @@ }; }; + services.network-manager-applet.enable = true; + services.pasystray.enable = true; + xresources.properties = { "Xft.antialias" = 1; "Xft.hinting" = 0; @@ -683,6 +686,21 @@ After = lib.mkForce ["graphical-session.target"]; }; }; + xsettingsd = { + Unit = { + After = lib.mkForce ["graphical-session.target"]; + }; + }; + network-manager-applet = { + Unit = { + After = lib.mkForce ["graphical-session.target"]; + }; + }; + pasystray = { + Unit = { + After = lib.mkForce ["graphical-session.target"]; + }; + }; }; home.sessionVariables.NIXOS_OZONE_WL = "1";