Files
rice-flakes/hosts/nixos-vm2/configuration.nix
2025-07-09 11:46:32 -05:00

21 lines
309 B
Nix

{
...
}:
{
imports = [
./hardware-configuration.nix
../../modules
];
programs.hyprland.enable = true;
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
services.spice-vdagentd.enable = true;
services.qemuGuest.enable = true;
system.stateVersion = "24.11";
}