From 97fa901395601c80d576d5d35940d674a947d038 Mon Sep 17 00:00:00 2001 From: ISnortPennies Date: Mon, 6 Feb 2023 18:36:15 -0500 Subject: [PATCH] fixing partition settings --- systems/desktop.nix | 4 ++-- systems/laptop.nix | 12 ++++++++++-- systems/mom.nix | 8 ++++++++ 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/systems/desktop.nix b/systems/desktop.nix index 177777d..a8a8e79 100644 --- a/systems/desktop.nix +++ b/systems/desktop.nix @@ -57,7 +57,7 @@ fileSystems = { "/" = { - device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part2"; + device = "/dev/disk/by-id/9e5c0a74-753a-4ebe-b8f1-5c7bdde21deb"; fsType = "ext4"; label = "nixos"; noCheck = false; @@ -65,7 +65,7 @@ neededForBoot = true; }; "/boot" = { - device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part1"; + device = "/dev/disk/by-id/79C3-9AB6"; fsType = "vfat"; label = "BOOT"; noCheck = false; diff --git a/systems/laptop.nix b/systems/laptop.nix index 6395030..1ee3f3f 100644 --- a/systems/laptop.nix +++ b/systems/laptop.nix @@ -47,12 +47,20 @@ }; fileSystems = { "/" = { - device = "/dev/nvme0n1p2"; + device = "/dev/disk/by-uuid/0822f37a-e55b-4b56-aeae-b6f4a11306c3"; fsType = "ext4"; + label = "nixos"; + noCheck = false; + mountPoint = "/"; + neededForBoot = true; }; "/boot" = { - device = "/dev/nvme0n1p1"; + device = "/dev/disk/by-uuid/EA2C-E488"; fsType = "vfat"; + label = "BOOT"; + noCheck = false; + mountPoint = "/boot"; + neededForBoot = true; }; }; } diff --git a/systems/mom.nix b/systems/mom.nix index 8f1bfa2..4f55e67 100644 --- a/systems/mom.nix +++ b/systems/mom.nix @@ -68,10 +68,18 @@ "/" = { device = "/dev/disk/by-uuid/518885c4-2d43-46a5-bf17-c734b7b85c2e"; fsType = "ext4"; + label = "nixos"; + noCheck = false; + mountPoint = "/"; + neededForBoot = true; }; "/boot" = { device = "/dev/disk/by-uuid/5BCE-813C"; fsType = "vfat"; + label = "BOOT"; + noCheck = false; + mountPoint = "/boot"; + neededForBoot = true; }; }; }