summaryrefslogtreecommitdiff
path: root/hosts/herra/hardware-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/hardware-configuration.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'hosts/herra/hardware-configuration.nix')
-rw-r--r--hosts/herra/hardware-configuration.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/hosts/herra/hardware-configuration.nix b/hosts/herra/hardware-configuration.nix
deleted file mode 100644
index 578ae01..0000000
--- a/hosts/herra/hardware-configuration.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-# Do not modify this file! It was generated by ‘nixos-generate-config’
-# and may be overwritten by future invocations. Please make changes
-# to /etc/nixos/configuration.nix instead.
-{ config, lib, pkgs, modulesPath, ... }:
-
-{
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "thunderbolt" "usbhid" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-intel" ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/229a13d8-159e-40b6-915a-606c32e3ca79";
- fsType = "btrfs";
- options = [ "subvol=@" ];
- };
-
- fileSystems."/home" =
- { device = "/dev/disk/by-uuid/229a13d8-159e-40b6-915a-606c32e3ca79";
- fsType = "btrfs";
- options = [ "subvol=@home" ];
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/03F6-F782";
- fsType = "vfat";
- options = [ "fmask=0077" "dmask=0077" ];
- };
-
- fileSystems."/nix" =
- { device = "/dev/disk/by-uuid/28fb6b6d-fb64-4a42-80af-88ce7b081258";
- fsType = "btrfs";
- };
-
- swapDevices = [ ];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-}