mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #109065 from Technical27/add-auto-cpufreq-module
nixos/auto-cpufreq: init module
This commit is contained in:
commit
48f6dbe1f8
2 changed files with 19 additions and 0 deletions
|
@ -359,6 +359,7 @@
|
|||
./services/games/terraria.nix
|
||||
./services/hardware/acpid.nix
|
||||
./services/hardware/actkbd.nix
|
||||
./services/hardware/auto-cpufreq.nix
|
||||
./services/hardware/bluetooth.nix
|
||||
./services/hardware/bolt.nix
|
||||
./services/hardware/brltty.nix
|
||||
|
|
18
nixos/modules/services/hardware/auto-cpufreq.nix
Normal file
18
nixos/modules/services/hardware/auto-cpufreq.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.services.auto-cpufreq;
|
||||
in {
|
||||
options = {
|
||||
services.auto-cpufreq = {
|
||||
enable = mkEnableOption "auto-cpufreq daemon";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = [ pkgs.auto-cpufreq ];
|
||||
|
||||
systemd.packages = [ pkgs.auto-cpufreq ];
|
||||
systemd.services.auto-cpufreq.path = with pkgs; [ bash coreutils ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue