{ pkgs, lib, ... }: { imports = [ ./hardware-configuration.nix ./file-system.nix ./packages.nix ./audio.nix ./drivers.nix ./steam.nix ]; networking.hostName = "herra"; # Dual-boot with Windows 11 boot.loader.grub.useOSProber = true; # Gaming-optimized Zen kernel (overrides system/boot.nix) # Includes: low-latency patches, BFQ scheduler, gaming optimizations # Similar performance benefits to Bazzite kernel boot.kernelPackages = lib.mkForce pkgs.linuxPackages_zen; }