This repository has been archived on 2026-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/hosts/magicman/laptop.nix
Torjus Håkestad 646f1668e3
Some checks failed
Run nix flake check / flake-check (push) Failing after 1s
Periodic flake update / flake-update (push) Successful in 2m21s
magicman: remove thermald, redundant with ThinkPad DYTC firmware
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 20:01:38 +01:00

20 lines
325 B
Nix

{ ... }:
{
hardware.brillo.enable = true;
powerManagement.enable = true;
services.auto-cpufreq = {
enable = true;
settings = {
battery = {
governor = "powersave";
turbo = "never";
};
charger = {
governor = "performance";
turbo = "auto";
};
};
};
}