fixed partition uuids

This commit is contained in:
Dennis Frieberg 2025-05-04 14:48:40 +02:00
parent cbbe1e1a59
commit 780942f4d2
Signed by: nerf
GPG key ID: 7C58AFED036072C5

View file

@ -21,8 +21,9 @@
neededForBoot = true;
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
device = "/dev/disk/by-uuid/65E5-43C6";
fsType = "ext4";
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";