summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <nick@nvandoorn.com>2023-03-03 19:54:56 +0000
committerNick Van Doorn <nick@nvandoorn.com>2023-03-03 19:54:56 +0000
commit765732c34dfb1495a240b041fe9da2dff181ba80 (patch)
treee995439f5627e2e0716c0c00530d4a4bc21b68ed
parent9c622dc0c7507e1b15043fea8f2b20c8f99da154 (diff)
Remove hardware config file
It's not that useful so pce
-rw-r--r--hardware-configuration.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
deleted file mode 100644
index a7e0b1d..0000000
--- a/hardware-configuration.nix
+++ /dev/null
@@ -1,46 +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 = [ "ehci_pci" "ata_piix" "xhci_pci" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-intel" ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/4ff8487c-9ef9-4071-9296-a982245c579e";
- fsType = "ext4";
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/D02A-D9BE";
- fsType = "vfat";
- };
-
- fileSystems."/mnt/cluster0" =
- { device = "/dev/disk/by-uuid/88e3ad6d-75c8-480c-9d55-ab31b8ccdd5e";
- fsType = "ext4";
- };
-
- fileSystems."/mnt/cluster1" =
- { device = "/dev/disk/by-uuid/582c8c85-6497-4cff-8398-104199d1ba8c";
- fsType = "ext4";
- };
-
- fileSystems."/mnt/cache" =
- { device = "/dev/disk/by-uuid/a1d6d1d9-2dd1-4d3e-8f21-8de30f072dca";
- fsType = "ext4";
- };
-
- swapDevices =
- [ { device = "/dev/disk/by-uuid/a30f1323-570f-4cd6-8acd-d7428e9327d3"; }
- ];
-
- powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
-}