diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/herra/configuration.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/herra/configuration.nix b/hosts/herra/configuration.nix index 2e0dd75..cb0e790 100644 --- a/hosts/herra/configuration.nix +++ b/hosts/herra/configuration.nix @@ -1,4 +1,8 @@ -{...}: { +{ + pkgs, + lib, + ... +}: { imports = [ ./hardware-configuration.nix ]; @@ -7,4 +11,9 @@ # 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; } |
