mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +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 {
|
config = mkIf cfg.enable {
|
||||||
services.xserver.windowManager.session = singleton {
|
services.xserver.windowManager.session = singleton {
|
||||||
name = "stumpwm";
|
name = "stumpwm";
|
||||||
start = "
|
start = ''
|
||||||
${pkgs.stumpwm}/bin/stumpwm
|
${pkgs.stumpwm}/bin/stumpwm &
|
||||||
";
|
waitPID=$!
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
environment.systemPackages = [ pkgs.stumpwm ];
|
environment.systemPackages = [ pkgs.stumpwm ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user