Powersave: Move tlp to laptop powersave.
This commit is contained in:
parent
68e104dd73
commit
57b5606e27
|
@ -34,28 +34,34 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable (
|
||||||
services = {
|
lib.mkMerge [
|
||||||
tlp.enable = true;
|
{
|
||||||
upower.enable = true;
|
environment.systemPackages = [ script ];
|
||||||
};
|
systemd = {
|
||||||
|
services.powersave-cpu = {
|
||||||
|
enable = true;
|
||||||
|
description = "disable CPU Boost";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
RemainAfterExit = "yes";
|
||||||
|
ExecStart = "${lib.getExe pkgs.bash} -c 'echo ${cfg.cpu.boost.enableCmd} > ${cfg.cpu.boost.controlFile}'";
|
||||||
|
ExecStop = "${lib.getExe pkgs.bash} -c 'echo ${cfg.cpu.boost.disableCmd} > ${cfg.cpu.boost.controlFile}'";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ script ];
|
# HACK: Allow user access.
|
||||||
systemd = {
|
tmpfiles.rules = [ "z ${cfg.cpu.boost.controlFile} 0777 - - - -" ];
|
||||||
services.powersave-cpu = {
|
|
||||||
enable = true;
|
|
||||||
description = "disable CPU Boost";
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "simple";
|
|
||||||
RemainAfterExit = "yes";
|
|
||||||
ExecStart = "${lib.getExe pkgs.bash} -c 'echo ${cfg.cpu.boost.enableCmd} > ${cfg.cpu.boost.controlFile}'";
|
|
||||||
ExecStop = "${lib.getExe pkgs.bash} -c 'echo ${cfg.cpu.boost.disableCmd} > ${cfg.cpu.boost.controlFile}'";
|
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
|
||||||
# HACK: Allow user access.
|
(lib.mkIf cfg.laptop {
|
||||||
tmpfiles.rules = [ "z ${cfg.cpu.boost.controlFile} 0777 - - - -" ];
|
services = {
|
||||||
};
|
tlp.enable = true;
|
||||||
};
|
upower.enable = true;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ __findFile, config, lib, pkgs, ... }:
|
{
|
||||||
|
__findFile,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.thunderbird-esr;
|
package = pkgs.thunderbird-esr;
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
{ lib, ... }:
|
{ lib, config, ... }:
|
||||||
|
let
|
||||||
|
purpose = config.module.purpose;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
options.module.powersave = {
|
options.module.powersave = {
|
||||||
enable = lib.mkEnableOption "the powersave";
|
enable = lib.mkEnableOption "the powersave";
|
||||||
|
laptop = lib.mkOption {
|
||||||
|
default = purpose.laptop;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
cpu.boost = {
|
cpu.boost = {
|
||||||
disableCmd = lib.mkOption {
|
disableCmd = lib.mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in a new issue