nixos/auto-cpufreq: init module

This commit is contained in:
Aamaruvi Yogamani 2021-01-08 15:57:48 -05:00
parent 508aacd589
commit 30b4f71c15
No known key found for this signature in database
GPG Key ID: F930CFBFF5D7FDC3
2 changed files with 19 additions and 0 deletions

View File

@ -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

View 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 ];
};
}