summary refs log tree commit diff
path: root/nixos/modules/services/x11
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2019-03-23 23:49:34 +0100
committerGitHub <noreply@github.com>2019-03-23 23:49:34 +0100
commitd71472beaf2f2c6508541ac59e32de744a07d5c4 (patch)
tree939922d14d00eb4de077fb07cc263e7af909ddc7 /nixos/modules/services/x11
parent5d8e3d7aedc911b1e30854856082531d2ad8728c (diff)
parent9f7f16cd7b0c7fc13119b72135e15807b70599af (diff)
downloadnixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar.gz
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar.bz2
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar.lz
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar.xz
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.tar.zst
nixpkgs-d71472beaf2f2c6508541ac59e32de744a07d5c4.zip
Merge pull request #57434 from ck3d/user-dwm
nixos dwm: start user installed dwm if available
Diffstat (limited to 'nixos/modules/services/x11')
-rw-r--r--nixos/modules/services/x11/window-managers/dwm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/window-managers/dwm.nix b/nixos/modules/services/x11/window-managers/dwm.nix
index a74bfce097d..7777913ce1e 100644
--- a/nixos/modules/services/x11/window-managers/dwm.nix
+++ b/nixos/modules/services/x11/window-managers/dwm.nix
@@ -25,7 +25,7 @@ in
       { name = "dwm";
         start =
           ''
-            ${pkgs.dwm}/bin/dwm &
+            dwm &
             waitPID=$!
           '';
       };