summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers/dwm.nix
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2019-03-11 20:18:08 +0100
committerChristian Kögler <ck3d@gmx.de>2019-03-11 20:18:08 +0100
commit9f7f16cd7b0c7fc13119b72135e15807b70599af (patch)
tree74ff297f8b5f85d92b06ab994230e4b751a2bfe6 /nixos/modules/services/x11/window-managers/dwm.nix
parent5d3fd3674a66c5b1ada63e2eace140519849c967 (diff)
downloadnixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar.gz
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar.bz2
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar.lz
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar.xz
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.tar.zst
nixpkgs-9f7f16cd7b0c7fc13119b72135e15807b70599af.zip
nixos dwm: start user installed dwm if available
dwm has no configuration file. The user has to install his own version.
Diffstat (limited to 'nixos/modules/services/x11/window-managers/dwm.nix')
-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=$!
           '';
       };