nixpkgs/nixos/modules/services/misc/xmrig.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.8 KiB
Nix
Raw Normal View History

2021-11-06 19:04:14 +01:00
{ config, pkgs, lib, ... }:
let
cfg = config.services.xmrig;
json = pkgs.formats.json { };
configFile = json.generate "config.json" cfg.settings;
in
with lib;
{
options = {
services.xmrig = {
enable = mkEnableOption (lib.mdDoc "XMRig Mining Software");
package = mkPackageOption pkgs "xmrig" {
example = "xmrig-mo";
2021-11-06 19:04:14 +01:00
};
settings = mkOption {
default = { };
type = json.type;
example = literalExpression ''
{
autosave = true;
cpu = true;
opencl = false;
cuda = false;
pools = [
{
url = "pool.supportxmr.com:443";
user = "your-wallet";
keepalive = true;
tls = true;
}
]
}
'';
description = lib.mdDoc ''
XMRig configuration. Refer to
<https://xmrig.com/docs/miner/config>
for details on supported values.
'';
};
};
};
config = mkIf cfg.enable {
hardware.cpu.x86.msr.enable = true;
2021-11-17 20:08:38 +01:00
2021-11-06 19:04:14 +01:00
systemd.services.xmrig = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
description = "XMRig Mining Software Service";
serviceConfig = {
ExecStartPre = "${lib.getExe cfg.package} --config=${configFile} --dry-run";
ExecStart = "${lib.getExe cfg.package} --config=${configFile}";
2021-11-17 20:08:38 +01:00
# https://xmrig.com/docs/miner/randomx-optimization-guide/msr
# If you use recent XMRig with root privileges (Linux) or admin
# privileges (Windows) the miner configure all MSR registers
# automatically.
DynamicUser = lib.mkDefault false;
2021-11-06 19:04:14 +01:00
};
};
};
meta = with lib; {
maintainers = with maintainers; [ ratsclub ];
};
}