1
0
Fork 0
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:
Daiderd Jordan 2020-05-30 12:12:40 +02:00
parent 5c7d050e20
commit 0ab3fab8b7
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -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
'';