aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/configuration.nix
blob: cb0e790ec70890ba1aef79789420af597fe9b94a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  pkgs,
  lib,
  ...
}: {
  imports = [
    ./hardware-configuration.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;
}