2023-11-21 14:09:31 +00:00
|
|
|
{ config, lib, ... }:
|
2017-04-06 14:12:21 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2018-10-14 20:42:01 +00:00
|
|
|
meta = {
|
|
|
|
maintainers = [ maintainers.joachifm ];
|
|
|
|
};
|
|
|
|
|
2017-04-06 14:12:21 +00:00
|
|
|
options = {
|
|
|
|
security.lockKernelModules = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2022-07-20 10:32:04 +00:00
|
|
|
description = ''
|
2017-04-06 14:12:21 +00:00
|
|
|
Disable kernel module loading once the system is fully initialised.
|
2021-09-15 11:43:26 +00:00
|
|
|
Module loading is disabled until the next reboot. Problems caused
|
2017-04-06 14:12:21 +00:00
|
|
|
by delayed module loading can be fixed by adding the module(s) in
|
2022-07-20 10:32:04 +00:00
|
|
|
question to {option}`boot.kernelModules`.
|
2017-04-06 14:12:21 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.security.lockKernelModules {
|
2017-09-22 21:45:04 +00:00
|
|
|
boot.kernelModules = concatMap (x:
|
2023-06-25 09:47:43 +00:00
|
|
|
optionals (x.device != null) (
|
|
|
|
if x.fsType == "vfat"
|
|
|
|
then [ "vfat" "nls-cp437" "nls-iso8859-1" ]
|
|
|
|
else [ x.fsType ])
|
|
|
|
) config.system.build.fileSystems;
|
2017-09-22 21:45:04 +00:00
|
|
|
|
2021-09-15 11:43:26 +00:00
|
|
|
systemd.services.disable-kernel-module-loading = {
|
2017-04-06 14:12:21 +00:00
|
|
|
description = "Disable kernel module loading";
|
|
|
|
|
2021-09-15 11:43:26 +00:00
|
|
|
wants = [ "systemd-udevd.service" ];
|
2017-04-06 14:12:21 +00:00
|
|
|
wantedBy = [ config.systemd.defaultUnit ];
|
|
|
|
|
2021-09-15 11:43:26 +00:00
|
|
|
after =
|
|
|
|
[ "firewall.service"
|
|
|
|
"systemd-modules-load.service"
|
2021-09-19 10:02:24 +00:00
|
|
|
config.systemd.defaultUnit
|
2021-09-15 11:43:26 +00:00
|
|
|
];
|
2017-04-06 14:12:21 +00:00
|
|
|
|
2017-04-30 12:42:15 +00:00
|
|
|
unitConfig.ConditionPathIsReadWrite = "/proc/sys/kernel";
|
2017-04-06 14:12:21 +00:00
|
|
|
|
2021-09-15 11:43:26 +00:00
|
|
|
serviceConfig =
|
|
|
|
{ Type = "oneshot";
|
|
|
|
RemainAfterExit = true;
|
|
|
|
TimeoutSec = 180;
|
|
|
|
};
|
|
|
|
|
|
|
|
script = ''
|
2023-11-21 14:09:31 +00:00
|
|
|
${config.systemd.package}/bin/udevadm settle
|
2021-09-15 11:43:26 +00:00
|
|
|
echo -n 1 >/proc/sys/kernel/modules_disabled
|
|
|
|
'';
|
2017-04-06 14:12:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|