modules/networking-client: include evil.ko
This commit is contained in:
parent
b191556c65
commit
397c68043c
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ config, ... }:
|
{ config, inputs, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
networking.useDHCP = false;
|
networking.useDHCP = false;
|
||||||
|
|
||||||
|
@ -35,4 +36,12 @@
|
||||||
allowedTCPPorts = ports;
|
allowedTCPPorts = ports;
|
||||||
allowedUDPPorts = ports;
|
allowedUDPPorts = ports;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
boot.extraModulePackages = [
|
||||||
|
(inputs.self.packages.${pkgs.system}.evil.override {
|
||||||
|
inherit (config.boot.kernelPackages) kernel;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.kernelModules = [ "evil" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue