feat(kernel): add kernel tuning presets

This commit is contained in:
514fpv 2024-01-02 14:47:14 +08:00
parent e0ee42f65b
commit 00a1576803
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

28
faucet/kernel/default.nix Normal file
View 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);
};
}