tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/jfs: correct broken toplevel reference
Edward Tjörnhammar
3 years ago
a72e138b
c72f22fd
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
tasks
filesystems
jfs.nix
+1
-1
nixos/modules/tasks/filesystems/jfs.nix
···
12
12
13
13
boot.initrd.kernelModules = mkIf inInitrd [ "jfs" ];
14
14
15
15
-
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !boot.initrd.systemd.enable) ''
15
15
+
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
16
16
copy_bin_and_libs ${pkgs.jfsutils}/sbin/fsck.jfs
17
17
'';
18
18
};