mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +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;
|
||
|
}
|