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