mirror of
https://github.com/oqyude/nixos.git
synced 2026-08-08 23:53:11 +03:00
17 lines
219 B
Nix
17 lines
219 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
services = {
|
|
tuned = {
|
|
enable = true;
|
|
};
|
|
auto-cpufreq.enable = false;
|
|
power-profiles-daemon.enable = lib.mkForce false;
|
|
throttled.enable = false;
|
|
};
|
|
}
|