3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #263627 from colemickens/systemd-stage1-fix-dosfstools

nixos/fs/vfat: fix inclusion in systemd stage1
This commit is contained in:
Will Fancher 2023-10-26 12:56:33 -04:00 committed by GitHub
commit 63429f43ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ in
ln -sv dosfsck $out/bin/fsck.vfat
'';
boot.initrd.systemd.extraBin = mkIf inInitrd [ pkgs.dosfstools ];
boot.initrd.systemd.initrdBin = mkIf inInitrd [ pkgs.dosfstools ];
};
}