Compare commits

...

2 Commits

Author SHA1 Message Date
c1ddad4ec8 nixos/shill: Reduce MemoryMax
Some checks failed
CI / Check, build and cache Nix flake (push) Has been cancelled
2024-07-07 11:57:45 +01:00
4e207c3397 nixos/colony: Disable KSM for now 2024-07-07 11:57:45 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
in
{
# Kernel Same-Page Merging to attempt memory usage reduction
hardware.ksm.enable = true;
hardware.ksm.enable = false;
systemd = {
network = {

View File

@ -65,7 +65,7 @@ in
serviceConfig = {
CPUQuota = "400%";
MemoryHigh = "4G";
MemoryMax = "4.5G";
MemoryMax = "4.1G";
};
wantedBy = [ "machines.target" ];