mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
10 lines
204 B
Nix
10 lines
204 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = [ pkgs.auto-cpufreq ];
|
|
systemd.services.auto-cpufreq.enable = true;
|
|
|
|
services.upower.enable = true;
|
|
systemd.services.upower.enable = true;
|
|
}
|