Add simple VM

This commit is contained in:
Bun 2025-03-24 02:55:47 -04:00
parent 0c78b13ceb
commit ad87c44701
8 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.grub = {
enable = true;
device = "/dev/vda";
};
};
}