mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
16 lines
371 B
Nix
16 lines
371 B
Nix
|
|
{mylib, ...}: {
|
||
|
|
perSystem = {system, ...}: {
|
||
|
|
packages.vm = mylib.mkVm [
|
||
|
|
./modules/base.nix
|
||
|
|
./modules/graphical.nix
|
||
|
|
{
|
||
|
|
user.username = "vm";
|
||
|
|
system.stateVersion = "24.11";
|
||
|
|
monitor.primary.resolution = "1920x1080";
|
||
|
|
services.qemuGuest.enable = true;
|
||
|
|
services.spice-vdagentd.enable = true;
|
||
|
|
}
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|