nixos/auto-cpufreq: init module

wip/yesman
Aamaruvi Yogamani 3 years ago
parent 508aacd589
commit 30b4f71c15
No known key found for this signature in database
GPG Key ID: F930CFBFF5D7FDC3
  1. 1
      nixos/modules/module-list.nix
  2. 18
      nixos/modules/services/hardware/auto-cpufreq.nix

@ -356,6 +356,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

@ -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…
Cancel
Save