mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
Merge pull request #8484 from DamienCassou/fix-blocking-stumpwm-module
Don't block the system after starting stumpwm
This commit is contained in:
commit
ffe164d758
@ -21,9 +21,10 @@ in
|
||||
config = mkIf cfg.enable {
|
||||
services.xserver.windowManager.session = singleton {
|
||||
name = "stumpwm";
|
||||
start = "
|
||||
${pkgs.stumpwm}/bin/stumpwm
|
||||
";
|
||||
start = ''
|
||||
${pkgs.stumpwm}/bin/stumpwm &
|
||||
waitPID=$!
|
||||
'';
|
||||
};
|
||||
environment.systemPackages = [ pkgs.stumpwm ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user