From c5031a5927c28f1f0c89b05a8f1fff1e188ba5ad Mon Sep 17 00:00:00 2001 From: Dennis Frieberg Date: Sun, 4 May 2025 14:48:40 +0200 Subject: [PATCH] fixed partition uuids --- nixos/machines/nerflap3/hardware-configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/machines/nerflap3/hardware-configuration.nix b/nixos/machines/nerflap3/hardware-configuration.nix index 27b2a8a..5a6fa30 100644 --- a/nixos/machines/nerflap3/hardware-configuration.nix +++ b/nixos/machines/nerflap3/hardware-configuration.nix @@ -21,8 +21,9 @@ neededForBoot = true; }; fileSystems."/boot" = { - device = "/dev/disk/by-label/boot"; - fsType = "ext4"; + device = "/dev/disk/by-uuid/65E5-43C6"; + fsType = "vfat"; + neededForBoot = true; }; fileSystems."/nix" = { device = "/dev/disk/by-label/nixos"; @@ -37,7 +38,7 @@ boot = { loader.systemd-boot.enable = true; - initrd.luks.devices.cryptroot.device = "/dev/disk/by-uuid/597B-4974"; + initrd.luks.devices.cryptroot.device = "/dev/disk/by-uuid/ea8b69f1-b1d3-48c6-b469-3b26652d237b"; }; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";