mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
8 lines
210 B
Nix
8 lines
210 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib.modules) mkIf mkDefault;
|
|
in {
|
|
config = mkIf config.role.laptop {
|
|
powerManagement.cpuFreqGovernor = mkDefault "powersave";
|
|
programs.light.enable = true;
|
|
};
|
|
}
|