Files
rice-flakes/hosts/nixos-vm2/configuration.nix
2025-10-10 11:49:10 -05:00

22 lines
310 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";
}