21 lines
356 B
Nix
21 lines
356 B
Nix
|
{
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
options.module.kernel = {
|
||
|
enable = lib.mkEnableOption "the kernel tweaks.";
|
||
|
hardening = lib.mkOption {
|
||
|
default = false;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
hotspotTtlBypass = lib.mkOption {
|
||
|
default = false;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
latest = lib.mkOption {
|
||
|
default = false;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
};
|
||
|
}
|