-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
|
||
let | ||
cfg = config.programs.corefreq; | ||
kernelPackages = config.boot.kernelPackages; | ||
in | ||
{ | ||
options = { | ||
programs.corefreq = { | ||
enable = lib.mkEnableOption "Whether to enable the corefreq daemon and kernel module"; | ||
|
||
package = lib.mkOption { | ||
type = lib.types.package; | ||
default = kernelPackages.corefreq; | ||
defaultText = lib.literalExpression "config.boot.kernelPackages.corefreq"; | ||
description = '' | ||
The corefreq package to use. | ||
''; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
environment.systemPackages = [ cfg.package ]; | ||
boot.extraModulePackages = [ cfg.package ]; | ||
boot.kernelModules = [ "corefreqk" ]; | ||
|
||
# Create a systemd service for the corefreq daemon | ||
systemd.services.corefreq = { | ||
description = "CoreFreq daemon"; | ||
wantedBy = [ "multi-user.target" ]; | ||
serviceConfig = { | ||
ExecStart = lib.getExe' cfg.package "corefreqd"; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
fetchFromGitHub, | ||
kernel, | ||
hostPlatform, | ||
# See the official readme for a list of optional flags: | ||
# https://github.com/cyring/CoreFreq/blob/master/README.md | ||
extraFlags ? [ ], | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "corefreq"; | ||
version = "1.98.4"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "cyring"; | ||
repo = "CoreFreq"; | ||
rev = version; | ||
hash = "sha256-ljo8EDoJmcdfVvC8s+Xbf5TsYruvSOU1OSYBPwQst1c="; | ||
}; | ||
|
||
nativeBuildInputs = kernel.moduleBuildDependencies; | ||
|
||
env.NIX_CFLAGS_COMPILE = "-I${src}/${hostPlatform.qemuArch}"; | ||
makeFlags = [ | ||
"KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" | ||
"INSTALL_MOD_PATH=$(out)" | ||
] ++ extraFlags; | ||
|
||
preInstall = '' | ||
mkdir -p $out/bin | ||
''; | ||
|
||
installFlags = [ "PREFIX=$(out)" ]; | ||
|
||
meta = { | ||
description = "CPU monitoring and tuning software designed for 64-bit processors"; | ||
homepage = "https://github.com/cyring/CoreFreq"; | ||
license = lib.licenses.gpl2Only; | ||
maintainers = with lib.maintainers; [ mrene ]; | ||
mainProgram = "corefreq-cli"; | ||
platforms = [ | ||
"x86_64-linux" | ||
"aarch64-linux" | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters