about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorCole Mickens <cole.mickens@gmail.com>2023-10-26 17:59:35 +0200
committerCole Mickens <cole.mickens@gmail.com>2023-10-26 18:44:02 +0200
commit8c7908acc8f7fae0b0447848a87a91858602298b (patch)
treeac3562ce39df2bd8e37c00809ce7a4d4ce2b5e73 /nixos/modules/tasks/filesystems
parentef603cfaf6f60bf843b5e9fa15e3af8bb3021b64 (diff)
downloadnixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar.gz
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar.bz2
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar.lz
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar.xz
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.tar.zst
nixlib-8c7908acc8f7fae0b0447848a87a91858602298b.zip
nixos/fs/vfat: fix inclusion in systemd stage1
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/vfat.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/vfat.nix b/nixos/modules/tasks/filesystems/vfat.nix
index e535e97759b2..9281b34633c2 100644
--- a/nixos/modules/tasks/filesystems/vfat.nix
+++ b/nixos/modules/tasks/filesystems/vfat.nix
@@ -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 ];
 
   };
 }