mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
vanadium: update {min,max}-free with a formula
This commit is contained in:
parent
294868e522
commit
c43cd8b595
1 changed files with 5 additions and 2 deletions
|
|
@ -1,8 +1,11 @@
|
||||||
# Protect my system from running out of storage or memory
|
# Protect my system from running out of storage or memory
|
||||||
|
let
|
||||||
|
totalStorage = 930;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
min-free = 50 * 1024 * 1024 * 1024;
|
min-free = builtins.ceil (totalStorage * 0.2) * 1024 * 1024 * 1024;
|
||||||
max-free = 100 * 1024 * 1024 * 1024;
|
max-free = builtins.ceil (totalStorage * 0.3) * 1024 * 1024 * 1024;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.nix-daemon.serviceConfig = {
|
systemd.services.nix-daemon.serviceConfig = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue