Enable insecure kernel modules

This commit is contained in:
Lan Tian 2026-03-07 23:11:39 -08:00
parent 1fc1e3f6d6
commit dda85c0c25
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B

View File

@ -110,7 +110,10 @@
_module.args.pkgs = lib.mkForce (
import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
config = {
allowUnfree = true;
allowInsecurePredicate = _: true;
};
}
);
};