Add zram for nix-cache
Some checks failed
Run nix flake check / flake-check (push) Failing after 4m22s
Periodic flake update / flake-update (push) Successful in 2m4s

This commit is contained in:
Torjus Håkestad 2025-05-27 21:28:09 +02:00
parent 2f9205d2c6
commit b9102b5a44
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 7 additions and 0 deletions

View File

@ -3,5 +3,6 @@
imports = [ imports = [
./configuration.nix ./configuration.nix
../../services/nix-cache ../../services/nix-cache
./zram.nix
]; ];
} }

View File

@ -0,0 +1,6 @@
{ ... }:
{
zramSwap = {
enable = true;
};
}