caveman: enable smokestack, set ram to 8gb

This commit is contained in:
Astro 2022-11-17 00:01:22 +01:00
parent dad77c7953
commit eea6b0bb87
1 changed files with 4 additions and 3 deletions

View File

@ -9,13 +9,13 @@
mounts = [ "etc" "var"];
};
microvm = {
vcpu = 16;
mem = 16 * 1024;
vcpu = 8;
mem = 8 * 1024;
};
networking = {
hostName = "caveman";
firewall.allowedTCPPorts = [ 80 443 ];
firewall.allowedTCPPorts = [ 23 80 443 ];
};
services.journald.extraConfig = ''
@ -38,6 +38,7 @@
};
};
gatherer.enable = true;
smokestack.enable = true;
};
services = {