summaryrefslogtreecommitdiff
path: root/hosts/kay/hardware-configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/kay/hardware-configuration.nix')
-rw-r--r--hosts/kay/hardware-configuration.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/hosts/kay/hardware-configuration.nix b/hosts/kay/hardware-configuration.nix
deleted file mode 100644
index 306e9ba..0000000
--- a/hosts/kay/hardware-configuration.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ modulesPath, ... }:
-
-{
- imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
-
- boot = {
- loader = {
- systemd-boot.enable = true;
- efi.canTouchEfiVariables = true;
- };
-
- kernelModules = [ "kvm-intel" ];
- blacklistedKernelModules = [ "nouveau" ];
- initrd.availableKernelModules = [
- "xhci_pci"
- "ehci_pci"
- "ahci"
- "usb_storage"
- "usbhid"
- "sd_mod"
- ];
- };
-
- fileSystems = {
- "/" = {
- device = "/dev/disk/by-uuid/2eeacf49-c51e-4229-bd4a-ae437014725f";
- fsType = "ext4";
- };
- "/boot" = {
- device = "/dev/disk/by-uuid/A902-90BB";
- fsType = "vfat";
- };
- "/hdd" = {
- device = "/dev/disk/by-uuid/c941edb4-e393-4254-bbef-d1b3728290e9";
- fsType = "ext4";
- };
- };
-}