herbstluftwm: fix unable to be started (#271198)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
B4rc1 2024-07-01 09:11:46 +00:00 committed by GitHub
parent b02fcf02cc
commit 814ed4b9e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,7 +33,10 @@ in
(cfg.configFile != null)
''-c "${cfg.configFile}"''
;
in "${cfg.package}/bin/herbstluftwm ${configFileClause} &";
in ''
${cfg.package}/bin/herbstluftwm ${configFileClause} &
waitPID=$!
'';
};
environment.systemPackages = [ cfg.package ];
};