From b4bc15095646dded404e0c7355f98259d8fa1053 Mon Sep 17 00:00:00 2001 From: Sanjay Chacku Purakal <48321566+twoneis@users.noreply.github.com> Date: Sun, 9 Jun 2024 15:47:33 +0200 Subject: [PATCH] added hardware config --- devices/inkvine/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/devices/inkvine/default.nix b/devices/inkvine/default.nix index 867d185..6f6fad0 100644 --- a/devices/inkvine/default.nix +++ b/devices/inkvine/default.nix @@ -11,8 +11,8 @@ boot = { initrd = { - availableKernelModules = [ "ahci" "xhci_pci" "ums_realtek" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; - luks.devices.cryptroot.device = "/dev/disk/by-uuid/"; + availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ]; + luks.devices.cryptroot.device = "/dev/disk/by-uuid/a553c11a-f6f4-4d67-a2d1-ede2615bce3d"; }; kernelModules = [ "kvm-intel" ]; @@ -28,19 +28,21 @@ fileSystems = { "/boot" = { - device = "/dev/disk/by-uuid/"; + device = "/dev/disk/by-uuid/5F53-367D"; fsType = "vfat"; }; "/" = { - device = "/dev/disk/by-uuid/"; + device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d"; fsType = "btrfs"; options = [ "subvol=root" "compress=zstd" "noatime" ]; }; "/nix" = { + device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; "/swap" = { + device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d"; fsType = "btrfs"; options = [ "subvol=swap" "noatime" ]; };