stumpwm: don't block after starting stumpwm
This is important to let nixos configure everything, e.g., a desktop manager.
This commit is contained in:
parent
e1af50c4c4
commit
0bd3737bd0
@ -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