nix-config/roles/nixos/graphical-vm.nix

15 lines
245 B
Nix
Raw Normal View History

2024-05-09 17:47:54 -05:00
{
config,
pkgs,
lib,
...
}: {
#note: needs to have something that autostarts desktop files.
services.spice-vdagentd.enable = true;
2024-05-15 13:22:50 -05:00
services.spice-autorandr.enable = true;
2024-05-09 17:47:54 -05:00
imports = [
./vm.nix
];
host.gui.enable = true;
}