summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Dietze <felix.dietze@rwth-aachen.de>2023-06-12 14:17:28 +0000
committerGitHub <noreply@github.com>2023-06-12 14:17:28 +0000
commit7cfeb768e5f2a160075d8736101444c10f1c5ea6 (patch)
tree5b948f5bf997665d634d0506e4ca2c3f8ac5ac81
parent7cb8758c67682150167b0c5c0501e9faaa5423a3 (diff)
downloadnixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar.gz
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar.bz2
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar.lz
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar.xz
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.tar.zst
nixpkgs-7cfeb768e5f2a160075d8736101444c10f1c5ea6.zip
fix herbstluftwm session command
-rw-r--r--nixos/modules/services/x11/window-managers/herbstluftwm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/window-managers/herbstluftwm.nix b/nixos/modules/services/x11/window-managers/herbstluftwm.nix
index 816cbb36caf..93705ada116 100644
--- a/nixos/modules/services/x11/window-managers/herbstluftwm.nix
+++ b/nixos/modules/services/x11/window-managers/herbstluftwm.nix
@@ -40,7 +40,7 @@ in
             (cfg.configFile != null)
             ''-c "${cfg.configFile}"''
             ;
-        in "${cfg.package}/bin/herbstluftwm ${configFileClause}";
+        in "${cfg.package}/bin/herbstluftwm ${configFileClause} &";
     };
     environment.systemPackages = [ cfg.package ];
   };