summaryrefslogtreecommitdiff
path: root/hosts/herra/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/herra/configuration.nix')
-rw-r--r--hosts/herra/configuration.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/hosts/herra/configuration.nix b/hosts/herra/configuration.nix
deleted file mode 100644
index 4403d12..0000000
--- a/hosts/herra/configuration.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- pkgs,
- lib,
- ...
-}: {
- imports = [
- ./hardware-configuration.nix
- ./file-system.nix
- ./packages.nix
- ./audio.nix
- ./drivers.nix
- ./steam.nix
- ./network.nix
- ./ai.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;
-}