fix: label syntax

This commit is contained in:
Noah Masur 2023-02-25 10:37:28 -05:00
parent 60b68785a9
commit 08716d1c98

View File

@ -19,7 +19,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
extraArgs = [ "--label boot" ];
extraArgs = [ "-n boot" ];
};
}
{
@ -33,7 +33,7 @@
type = "filesystem";
format = "ext4";
mountpoint = "/";
extraArgs = [ "--label nixos" ];
extraArgs = [ "-L nixos" ];
};
}
];