mirror of
https://github.com/librephoenix/nixos-config
synced 2025-12-15 22:14:00 +05:30
9 lines
204 B
Nix
9 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;
|
|
}
|