Fix: Replace placeholders with correct disk UUIDs

This commit is contained in:
Joey Hafner 2025-02-05 22:15:54 -08:00
parent e53fad33d0
commit 0821d2fd3b
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55

View File

@ -1,12 +1,12 @@
{ ... }: {
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/placeholder";
device = "/dev/disk/by-uuid/88a3f223-ed42-4be1-a748-bb9e0f9007dc";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/placeholder";
device = "/dev/disk/by-uuid/744D-0867";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};