python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / cpuminer-cryptonight.nix
blob7b18c6b3cd208bd464b8fbf6cbc12303070654ee
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.cpuminer-cryptonight;
8   json = builtins.toJSON (
9     cfg // {
10        enable = null;
11        threads =
12          if cfg.threads == 0 then null else toString cfg.threads;
13     }
14   );
16   confFile = builtins.toFile "cpuminer.json" json;
20   options = {
22     services.cpuminer-cryptonight = {
23       enable = mkOption {
24         type = types.bool;
25         default = false;
26         description = lib.mdDoc ''
27           Whether to enable the cpuminer cryptonight miner.
28         '';
29       };
30       url = mkOption {
31         type = types.str;
32         description = lib.mdDoc "URL of mining server";
33       };
34       user = mkOption {
35         type = types.str;
36         description = lib.mdDoc "Username for mining server";
37       };
38       pass = mkOption {
39         type = types.str;
40         default = "x";
41         description = lib.mdDoc "Password for mining server";
42       };
43       threads = mkOption {
44         type = types.int;
45         default = 0;
46         description = lib.mdDoc "Number of miner threads, defaults to available processors";
47       };
48     };
50   };
52   config = mkIf config.services.cpuminer-cryptonight.enable {
54     systemd.services.cpuminer-cryptonight = {
55       description = "Cryptonight cpuminer";
56       wantedBy = [ "multi-user.target" ];
57       after = [ "network.target" ];
58       serviceConfig = {
59         ExecStart = "${pkgs.cpuminer-multi}/bin/minerd --syslog --config=${confFile}";
60         User = "nobody";
61       };
62     };
64   };