feat(kernel): add kernel tuning presets
This commit is contained in:
parent
e0ee42f65b
commit
00a1576803
28
faucet/kernel/default.nix
Normal file
28
faucet/kernel/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.faucet.kernel;
|
||||
in {
|
||||
options.faucet.kernel = {
|
||||
enable = mkEnableOption "kernel version and configuration" // { default = true; };
|
||||
lts = mkEnableOption "longterm kernel releases";
|
||||
sysctl = {
|
||||
enable = mkEnableOption "sysctl presets" // { default = true; };
|
||||
harden = mkEnableOption "hardening sysctls" // { default = true; };
|
||||
swappiness = mkOption {
|
||||
type = with types; int;
|
||||
default = 0;
|
||||
description = "vm.swappiness value, should be zero for low memory SSD systems";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
boot.kernel.sysctl = {
|
||||
"kernel.dmesg_restrict" = mkIf cfg.sysctl.harden 1;
|
||||
"vm.swappiness" = cfg.sysctl.swappiness;
|
||||
};
|
||||
boot.kernelPackages = with pkgs; mkDefault (if cfg.lts then linuxPackages else linuxPackages_latest);
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue