about summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers
diff options
context:
space:
mode:
authorkennycallado <kennycallado@hotmail.com>2024-01-15 17:49:01 +0100
committerkennycallado <kennycallado@hotmail.com>2024-01-15 17:49:01 +0100
commit73cb33678527ddc323c7fcef3d17ac85603e5b02 (patch)
tree2d98f3b6ac4815f572350ffb29fe26469248c068 /nixos/modules/services/x11/window-managers
parent21bbae01a240151f69e7558be53a34b3d957d871 (diff)
nixos/icewm: Update icewm start command
Preferred way to start session in icewm. [docs](https://ice-wm.org/man/icewm-session)
Diffstat (limited to 'nixos/modules/services/x11/window-managers')
-rw-r--r--nixos/modules/services/x11/window-managers/icewm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/window-managers/icewm.nix b/nixos/modules/services/x11/window-managers/icewm.nix
index 48741aa41d853..e3cb5cc3be2ba 100644
--- a/nixos/modules/services/x11/window-managers/icewm.nix
+++ b/nixos/modules/services/x11/window-managers/icewm.nix
@@ -17,7 +17,7 @@ in
       { name = "icewm";
         start =
           ''
-            ${pkgs.icewm}/bin/icewm &
+            ${pkgs.icewm}/bin/icewm-session &
             waitPID=$!
           '';
       };