diff options
-rw-r--r-- | system/linde.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/linde.nix b/system/linde.nix index ed45d774..7fd8337a 100644 --- a/system/linde.nix +++ b/system/linde.nix @@ -883,7 +883,7 @@ in services.searchix = { enable = true; environment = { - GOMEMLIMIT = "2000MiB"; + GOMEMLIMIT = "1000MiB"; }; settings = { web = @@ -955,6 +955,10 @@ in }; }; }; + systemd.services.searchix.serviceConfig = { + MemoryHigh = "750M"; + MemoryMax = "1G"; + }; programs.git = { enable = true; |