about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-10-26 18:01:02 +0000
committerGitHub <noreply@github.com>2023-10-26 18:01:02 +0000
commit96132a216a919e3260941c67161b5f16c6a85880 (patch)
tree55964a141e571c641c703e4251d97785c8e301d3 /nixos/modules/tasks/filesystems
parent23c525f8dadc3caf0b00a1406ad5a6bd76ea5357 (diff)
parentadcaf3962d5147cec7d63c1ff9e3f7a3fe4653d4 (diff)
Merge master into staging-next
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 e535e97759b22..9281b34633c25 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 ];
 
   };
 }