mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
19 lines
338 B
Nix
19 lines
338 B
Nix
|
|
{
|
||
|
|
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;
|
||
|
|
};
|
||
|
|
}
|