From d5c967dd414151c9b1d3f070c7b1b0b32000df0b Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Tue, 29 Oct 2024 18:59:05 +0100 Subject: [PATCH] fix uuids --- mini/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mini/hardware-configuration.nix b/mini/hardware-configuration.nix index a5de48c..b9a2ac5 100644 --- a/mini/hardware-configuration.nix +++ b/mini/hardware-configuration.nix @@ -18,7 +18,7 @@ # /boot efi partition to boot in UEFI mode fileSystems."/boot" = { - device = "/dev/disk/by-uuid/A361-6A10"; + device = "/dev/disk/by-uuid/1B9E-991C"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; neededForBoot = true; @@ -27,7 +27,7 @@ # encrypted system - on a md device boot.swraid.enable = true; boot.initrd.luks.devices."crypt-system" = { - device = "/dev/disk/by-uuid/a1d1ef39-74ea-4a6c-bc47-8ae90e002126"; + device = "/dev/disk/by-uuid/565695e2-a09b-412b-9f26-4da10402b967"; allowDiscards = true; bypassWorkqueues = true; };