about summary refs log tree commit diff
path: root/nixos/modules/services/x11/urxvtd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/x11/urxvtd.nix')
-rw-r--r--nixos/modules/services/x11/urxvtd.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/modules/services/x11/urxvtd.nix b/nixos/modules/services/x11/urxvtd.nix
index 57ad93f20174..f2ce089ce19a 100644
--- a/nixos/modules/services/x11/urxvtd.nix
+++ b/nixos/modules/services/x11/urxvtd.nix
@@ -21,9 +21,8 @@ in {
     systemd.user = {
       sockets.urxvtd = {
         description = "socket for urxvtd, the urxvt terminal daemon";
-        after = [ "graphical.target" ];
-        wants = [ "graphical.target" ];
-        wantedBy = [ "sockets.target" ];
+        wantedBy = [ "graphical-session.target" ];
+        partOf = [ "graphical-session.target" ];
         socketConfig = {
           ListenStream = "%t/urxvtd-socket";
         };