nixos/machines/qemu/default.nix

19 lines
338 B
Nix
Raw Normal View History

2025-01-31 15:13:22 +01:00
{
username,
stateVersion,
...
}: {
imports = [
../../targets/graphical.nix
../../targets/shell.nix
];
config = {
user.username = username;
system.stateVersion = stateVersion;
monitor.primary.resolution = "1920x1080";
services.qemuGuest.enable = true;
services.spice-vdagentd.enable = true;
};
}