installer/sd-card: use mkImageMediaOverride...

...for filesystem options. Before this change, users would typically encounter conflicting option definitions when trying to build an image for a generic nixos closure, i.e. `nixos-rebuild build-image --image-variant sd-card --flake .#my-host`
This commit is contained in:
phaer
2025-04-11 14:33:47 +02:00
parent 887f7d33e0
commit 5bd99195fa
+1 -1
View File
@@ -185,7 +185,7 @@ in
config = {
hardware.enableAllHardware = true;
fileSystems = {
fileSystems = lib.mkImageMediaOverride {
"/boot/firmware" = {
device = "/dev/disk/by-label/${config.sdImage.firmwarePartitionName}";
fsType = "vfat";