Files
2026-04-24 17:35:33 -05:00

19 lines
344 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
services.spice-vdagentd.enable = true;
services.qemuGuest.enable = true;
system.stateVersion = "25.11";
}