feat: tweaked some microvms

This commit is contained in:
Nick 2025-11-27 05:12:15 -06:00
parent 1f43844e90
commit cb11da0008
6 changed files with 47 additions and 20 deletions

View file

@ -1,6 +1,7 @@
{
config,
flake,
pkgs,
...
}:
let
@ -82,7 +83,7 @@ in
systemd.services.systemd-networkd.wantedBy = [ "multi-user.target" ];
microvm = {
vcpu = 1;
vcpu = 2;
mem = 1024 * 3;
hypervisor = "qemu";
interfaces = [
@ -131,6 +132,14 @@ in
}
];
};
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
yazi
bottom
trashy
fastfetch
;
};
};
};
};