aboutsummaryrefslogtreecommitdiff
path: root/hosts/myrtle/hardware-configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/myrtle/hardware-configuration.nix')
-rw-r--r--hosts/myrtle/hardware-configuration.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/hosts/myrtle/hardware-configuration.nix b/hosts/myrtle/hardware-configuration.nix
index 86638d2..099052a 100644
--- a/hosts/myrtle/hardware-configuration.nix
+++ b/hosts/myrtle/hardware-configuration.nix
@@ -5,7 +5,8 @@
5 5
6{ 6{
7 imports = 7 imports =
8 [ (modulesPath + "/installer/scan/not-detected.nix") 8 [
9 (modulesPath + "/installer/scan/not-detected.nix")
9 ]; 10 ];
10 11
11 boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; 12 boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ];
@@ -14,12 +15,14 @@
14 boot.extraModulePackages = [ ]; 15 boot.extraModulePackages = [ ];
15 16
16 fileSystems."/" = 17 fileSystems."/" =
17 { device = "/dev/disk/by-uuid/59c9ddc2-b914-414b-9e7e-74b405cbf3f6"; 18 {
19 device = "/dev/disk/by-uuid/59c9ddc2-b914-414b-9e7e-74b405cbf3f6";
18 fsType = "ext4"; 20 fsType = "ext4";
19 }; 21 };
20 22
21 fileSystems."/boot" = 23 fileSystems."/boot" =
22 { device = "/dev/disk/by-uuid/7004-C5AE"; 24 {
25 device = "/dev/disk/by-uuid/7004-C5AE";
23 fsType = "vfat"; 26 fsType = "vfat";
24 }; 27 };
25 28