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

15 lines
243 B
Nix

{
config,
pkgs,
lib,
...
}: {
#note: needs to have something that autostarts desktop files.
services.spice-vdagentd.enable = true;
services.spice-autorandr.enable=true;
imports = [
./vm.nix
];
host.gui.enable = true;
}