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

13
hosts/qemu/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, lib, ... }:
{
imports = [
./boot
./disko
./hardware
./users
../../modules/system
];
networking.hostName = "qemu";
system.stateVersion = "24.11";
}