nix-conf/modules/servers/common/basic-services.nix

12 lines
178 B
Nix

{
# Setup ntp
services.timesyncd.enable = true;
# Setup zram
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 100;
priority = 100;
};
}