mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
lnl: fix min-free/max-free values
This commit is contained in:
parent
5c7d050e20
commit
0ab3fab8b7
1 changed files with 10 additions and 3 deletions
|
@ -79,14 +79,21 @@
|
|||
serviceConfig.StartInterval = 360;
|
||||
};
|
||||
|
||||
launchd.user.agents.letty = {
|
||||
serviceConfig.Program = "${pkgs.lnl.letty}/bin/letty-blink";
|
||||
serviceConfig.WatchPaths = ["/var/mail/lnl"];
|
||||
serviceConfig.KeepAlive = false;
|
||||
serviceConfig.ProcessType = "Background";
|
||||
};
|
||||
|
||||
services.nix-daemon.enable = true;
|
||||
services.nix-daemon.enableSocketListener = true;
|
||||
# services.nix-daemon.enableSocketListener = true;
|
||||
|
||||
nix.extraOptions = ''
|
||||
gc-keep-derivations = true
|
||||
gc-keep-outputs = true
|
||||
min-free = 68719480000
|
||||
max-free = 274877900000
|
||||
min-free = 17179870000
|
||||
max-free = 17179870000
|
||||
log-lines = 128
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue