goyplex-vm

This commit is contained in:
2026-04-24 17:35:33 -05:00
parent 99a93326b9
commit 011afecb6f
3 changed files with 57 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ 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";
}