Create 6 new NixOS modules to reduce duplication across system configs: - hardware/wooting: Wooting keyboard udev rules and Bluetooth compat - services/nginx-base: Common nginx server settings - services/acme-base: ACME certificate defaults - services/xremap: Key remapping with sensible defaults - system/no-sleep: Disable sleep/suspend/hibernate targets - system/kernel-tweaks: PM freeze timeout and zram configuration Update system configuration files to use these new modules. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
618 B
Nix
29 lines
618 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with lib.metacfg;
|
|
let
|
|
cfg = config.metacfg.system.kernelTweaks;
|
|
in
|
|
{
|
|
options.metacfg.system.kernelTweaks = with types; {
|
|
enable = mkBoolOpt false "Whether or not to enable desktop kernel optimizations.";
|
|
pmFreezeTimeout = mkOption {
|
|
type = types.int;
|
|
default = 30000;
|
|
description = "PM freeze timeout in milliseconds.";
|
|
};
|
|
enableZram = mkBoolOpt true "Enable zram swap.";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
boot.kernel.sysctl = {
|
|
"power.pm_freeze_timeout" = cfg.pmFreezeTimeout;
|
|
};
|
|
|
|
zramSwap.enable = cfg.enableZram;
|
|
};
|
|
}
|