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