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

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

118 lines
3.0 KiB
Nix
Raw Normal View History

2019-03-21 21:48:35 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.ethminer;
poolUrl = escapeShellArg "stratum1+tcp://${cfg.wallet}@${cfg.pool}:${toString cfg.stratumPort}/${cfg.rig}/${cfg.registerMail}";
in
{
###### interface
options = {
services.ethminer = {
enable = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc "Enable ethminer ether mining.";
2019-03-21 21:48:35 +00:00
};
recheckInterval = mkOption {
type = types.ints.unsigned;
2019-03-21 21:48:35 +00:00
default = 2000;
description = lib.mdDoc "Interval in milliseconds between farm rechecks.";
2019-03-21 21:48:35 +00:00
};
toolkit = mkOption {
type = types.enum [ "cuda" "opencl" ];
default = "cuda";
description = lib.mdDoc "Cuda or opencl toolkit.";
2019-03-21 21:48:35 +00:00
};
apiPort = mkOption {
type = types.int;
default = -3333;
description = lib.mdDoc "Ethminer api port. minus sign puts api in read-only mode.";
2019-03-21 21:48:35 +00:00
};
wallet = mkOption {
type = types.str;
example = "0x0123456789abcdef0123456789abcdef01234567";
description = lib.mdDoc "Ethereum wallet address.";
2019-03-21 21:48:35 +00:00
};
pool = mkOption {
type = types.str;
example = "eth-us-east1.nanopool.org";
description = lib.mdDoc "Mining pool address.";
2019-03-21 21:48:35 +00:00
};
stratumPort = mkOption {
type = types.port;
default = 9999;
description = lib.mdDoc "Stratum protocol tcp port.";
2019-03-21 21:48:35 +00:00
};
rig = mkOption {
type = types.str;
default = "mining-rig-name";
description = lib.mdDoc "Mining rig name.";
2019-03-21 21:48:35 +00:00
};
registerMail = mkOption {
type = types.str;
example = "email%40example.org";
description = lib.mdDoc "Url encoded email address to register with pool.";
2019-03-21 21:48:35 +00:00
};
maxPower = mkOption {
type = types.ints.unsigned;
2019-12-14 15:01:31 +00:00
default = 113;
description = lib.mdDoc "Miner max watt usage.";
2019-03-21 21:48:35 +00:00
};
};
};
###### implementation
config = mkIf cfg.enable {
systemd.services.ethminer = {
path = optional (cfg.toolkit == "cuda") [ pkgs.cudaPackages.cudatoolkit ];
2019-03-21 21:48:35 +00:00
description = "ethminer ethereum mining service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
DynamicUser = true;
2019-12-14 15:01:31 +00:00
ExecStartPre = "${pkgs.ethminer}/bin/.ethminer-wrapped --list-devices";
2019-03-21 21:48:35 +00:00
ExecStartPost = optional (cfg.toolkit == "cuda") "+${getBin config.boot.kernelPackages.nvidia_x11}/bin/nvidia-smi -pl ${toString cfg.maxPower}";
2019-12-14 15:01:31 +00:00
Restart = "always";
2019-03-21 21:48:35 +00:00
};
environment = mkIf (cfg.toolkit == "cuda") {
2019-03-21 21:48:35 +00:00
LD_LIBRARY_PATH = "${config.boot.kernelPackages.nvidia_x11}/lib";
};
script = ''
${pkgs.ethminer}/bin/.ethminer-wrapped \
--farm-recheck ${toString cfg.recheckInterval} \
--report-hashrate \
--${cfg.toolkit} \
--api-port ${toString cfg.apiPort} \
--pool ${poolUrl}
'';
};
};
}