summaryrefslogtreecommitdiff
path: root/hosts/herra/configuration.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /hosts/herra/configuration.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
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;
-}