mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
nixos/lock-kernel-modules: fix deferred fileSystem mounts
Ensure that modules required by all declared fileSystems are explicitly loaded. A little ugly but fixes the deferred mount test. See also https://github.com/NixOS/nixpkgs/issues/29019
This commit is contained in:
parent
bccaf63067
commit
1df6cf5d1d
@ -17,6 +17,14 @@ with lib;
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf config.security.lockKernelModules {
|
config = mkIf config.security.lockKernelModules {
|
||||||
|
boot.kernelModules = concatMap (x:
|
||||||
|
if x.device != null
|
||||||
|
then
|
||||||
|
if x.fsType == "vfat"
|
||||||
|
then [ "vfat" "nls-cp437" "nls-iso8859-1" ]
|
||||||
|
else [ x.fsType ]
|
||||||
|
else []) config.system.build.fileSystems;
|
||||||
|
|
||||||
systemd.services.disable-kernel-module-loading = rec {
|
systemd.services.disable-kernel-module-loading = rec {
|
||||||
description = "Disable kernel module loading";
|
description = "Disable kernel module loading";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user