modules/laptop.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | { config, pkgs, ... }: { boot.kernelModules = [ "coretemp" ]; boot.extraModulePackages = with config.boot.kernelPackages; [ x86_energy_perf_policy ]; hardware = { bluetooth.enable = true; }; environment.systemPackages = with pkgs; [ powerstat powertop ]; programs.light.enable = true; services.logind.extraConfig = '' IdleAction=suspend IdleActionSec=600 ''; services.tlp = { enable = true; extraConfig = '' CPU_SCALING_GOVERNOR_ON_BAT=powersave ''; }; services.xserver = { libinput = { enable = true; naturalScrolling = true; disableWhileTyping = true; }; }; systemd.services.nixos-upgrade.unitConfig.ConditionACPower = true; systemd.services.nix-gc.unitConfig.ConditionACPower = true; } |