summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/misc/cpuminer-cryptonight.nix
blob: a06077497e22ad8827449fd769bbe7bd0ea00b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.services.cpuminer-cryptonight;

  json = builtins.toJSON (
    cfg
    // {
      enable = null;
      threads = if cfg.threads == 0 then null else toString cfg.threads;
    }
  );

  confFile = builtins.toFile "cpuminer.json" json;
in
{

  options = {

    services.cpuminer-cryptonight = {
      enable = lib.mkOption {
        type = lib.types.bool;
        default = false;
        description = ''
          Whether to enable the cpuminer cryptonight miner.
        '';
      };
      url = lib.mkOption {
        type = lib.types.str;
        description = "URL of mining server";
      };
      user = lib.mkOption {
        type = lib.types.str;
        description = "Username for mining server";
      };
      pass = lib.mkOption {
        type = lib.types.str;
        default = "x";
        description = "Password for mining server";
      };
      threads = lib.mkOption {
        type = lib.types.ints.unsigned;
        default = 0;
        description = "Number of miner threads, defaults to available processors";
      };
    };

  };

  config = lib.mkIf config.services.cpuminer-cryptonight.enable {

    systemd.services.cpuminer-cryptonight = {
      description = "Cryptonight cpuminer";
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];
      serviceConfig = {
        ExecStart = "${pkgs.cpuminer-multi}/bin/minerd --syslog --config=${confFile}";
        User = "nobody";
      };
    };

  };

}