mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
530 B
Nix
22 lines
530 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.throttled;
|
|
in {
|
|
options = {
|
|
services.throttled = {
|
|
enable = mkEnableOption "fix for Intel CPU throttling";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.packages = [ pkgs.throttled ];
|
|
# The upstream package has this in Install, but that's not enough, see the NixOS manual
|
|
systemd.services."lenovo_fix".wantedBy = [ "multi-user.target" ];
|
|
|
|
environment.etc."lenovo_fix.conf".source = "${pkgs.throttled}/etc/lenovo_fix.conf";
|
|
};
|
|
}
|