1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

eternal-terminal: change launchd agent config

- don't daemonize program
- disable keep alive

these settings are consistent with the configuration in the project
repository:
1d9cd2be9d/init/launchd/homebrew.mxcl.et.plist
This commit is contained in:
ryane 2023-07-24 17:50:26 -04:00
parent 6adc4c680b
commit c4a1a1c458
No known key found for this signature in database

View file

@ -65,7 +65,6 @@ in {
serviceConfig = {
ProgramArguments = [
"${cfg.package}/bin/etserver"
"--daemon"
"--cfgfile=${
pkgs.writeText "et.cfg" ''
; et.cfg : Config file for Eternal Terminal
@ -81,7 +80,7 @@ in {
''
}"
];
KeepAlive = true;
KeepAlive = false;
RunAtLoad = true;
HardResourceLimits.NumberOfFiles = 4096;
SoftResourceLimits.NumberOfFiles = 4096;