diff options
| author | seth <[email protected]> | 2023-04-25 00:49:53 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-04-25 00:49:53 -0400 |
| commit | 386d94bec75400733b1b0ff10edfa048e04a1b4e (patch) | |
| tree | 405935e835ebd7c7e01d6a80798b44e1f80bccc2 | |
| parent | 7e03f3ea2f000800e840e0c8077d3ad28e419e3a (diff) | |
pbody: set max-freed gc to 50g
| -rw-r--r-- | hosts/p-body/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/p-body/default.nix b/hosts/p-body/default.nix index 99e8a8d..7988bfb 100644 --- a/hosts/p-body/default.nix +++ b/hosts/p-body/default.nix @@ -163,7 +163,10 @@ }; }; - nix.settings.trusted-users = ["p-body"]; + nix = { + gc.options = "--delete-older-than 7d --max-freed 50G"; + settings.trusted-users = ["p-body"]; + }; zramSwap.enable = true; } |
