2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
244 lines
5.8 KiB
Nix
244 lines
5.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.monero;
|
|
|
|
listToConf = option: list:
|
|
concatMapStrings (value: "${option}=${value}\n") list;
|
|
|
|
login = (cfg.rpc.user != null && cfg.rpc.password != null);
|
|
|
|
configFile = with cfg; pkgs.writeText "monero.conf" ''
|
|
log-file=/dev/stdout
|
|
data-dir=${dataDir}
|
|
|
|
${optionalString mining.enable ''
|
|
start-mining=${mining.address}
|
|
mining-threads=${toString mining.threads}
|
|
''}
|
|
|
|
rpc-bind-ip=${rpc.address}
|
|
rpc-bind-port=${toString rpc.port}
|
|
${optionalString login ''
|
|
rpc-login=${rpc.user}:${rpc.password}
|
|
''}
|
|
${optionalString rpc.restricted ''
|
|
restricted-rpc=1
|
|
''}
|
|
|
|
limit-rate-up=${toString limits.upload}
|
|
limit-rate-down=${toString limits.download}
|
|
max-concurrency=${toString limits.threads}
|
|
block-sync-size=${toString limits.syncSize}
|
|
|
|
${listToConf "add-peer" extraNodes}
|
|
${listToConf "add-priority-node" priorityNodes}
|
|
${listToConf "add-exclusive-node" exclusiveNodes}
|
|
|
|
${extraConfig}
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.monero = {
|
|
|
|
enable = mkEnableOption "Monero node daemon";
|
|
|
|
dataDir = mkOption {
|
|
type = types.str;
|
|
default = "/var/lib/monero";
|
|
description = lib.mdDoc ''
|
|
The directory where Monero stores its data files.
|
|
'';
|
|
};
|
|
|
|
mining.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to mine monero.
|
|
'';
|
|
};
|
|
|
|
mining.address = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
Monero address where to send mining rewards.
|
|
'';
|
|
};
|
|
|
|
mining.threads = mkOption {
|
|
type = types.addCheck types.int (x: x>=0);
|
|
default = 0;
|
|
description = lib.mdDoc ''
|
|
Number of threads used for mining.
|
|
Set to `0` to use all available.
|
|
'';
|
|
};
|
|
|
|
rpc.user = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
User name for RPC connections.
|
|
'';
|
|
};
|
|
|
|
rpc.password = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Password for RPC connections.
|
|
'';
|
|
};
|
|
|
|
rpc.address = mkOption {
|
|
type = types.str;
|
|
default = "127.0.0.1";
|
|
description = lib.mdDoc ''
|
|
IP address the RPC server will bind to.
|
|
'';
|
|
};
|
|
|
|
rpc.port = mkOption {
|
|
type = types.port;
|
|
default = 18081;
|
|
description = lib.mdDoc ''
|
|
Port the RPC server will bind to.
|
|
'';
|
|
};
|
|
|
|
rpc.restricted = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to restrict RPC to view only commands.
|
|
'';
|
|
};
|
|
|
|
limits.upload = mkOption {
|
|
type = types.addCheck types.int (x: x>=-1);
|
|
default = -1;
|
|
description = lib.mdDoc ''
|
|
Limit of the upload rate in kB/s.
|
|
Set to `-1` to leave unlimited.
|
|
'';
|
|
};
|
|
|
|
limits.download = mkOption {
|
|
type = types.addCheck types.int (x: x>=-1);
|
|
default = -1;
|
|
description = lib.mdDoc ''
|
|
Limit of the download rate in kB/s.
|
|
Set to `-1` to leave unlimited.
|
|
'';
|
|
};
|
|
|
|
limits.threads = mkOption {
|
|
type = types.addCheck types.int (x: x>=0);
|
|
default = 0;
|
|
description = lib.mdDoc ''
|
|
Maximum number of threads used for a parallel job.
|
|
Set to `0` to leave unlimited.
|
|
'';
|
|
};
|
|
|
|
limits.syncSize = mkOption {
|
|
type = types.addCheck types.int (x: x>=0);
|
|
default = 0;
|
|
description = lib.mdDoc ''
|
|
Maximum number of blocks to sync at once.
|
|
Set to `0` for adaptive.
|
|
'';
|
|
};
|
|
|
|
extraNodes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = lib.mdDoc ''
|
|
List of additional peer IP addresses to add to the local list.
|
|
'';
|
|
};
|
|
|
|
priorityNodes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = lib.mdDoc ''
|
|
List of peer IP addresses to connect to and
|
|
attempt to keep the connection open.
|
|
'';
|
|
};
|
|
|
|
exclusiveNodes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = ''
|
|
List of peer IP addresses to connect to *only*.
|
|
If given the other peer options will be ignored.
|
|
'';
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
Extra lines to be added verbatim to monerod configuration.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
users.users.monero = {
|
|
isSystemUser = true;
|
|
group = "monero";
|
|
description = "Monero daemon user";
|
|
home = cfg.dataDir;
|
|
createHome = true;
|
|
};
|
|
|
|
users.groups.monero = { };
|
|
|
|
systemd.services.monero = {
|
|
description = "monero daemon";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
User = "monero";
|
|
Group = "monero";
|
|
ExecStart = "${pkgs.monero-cli}/bin/monerod --config-file=${configFile} --non-interactive";
|
|
Restart = "always";
|
|
SuccessExitStatus = [ 0 1 ];
|
|
};
|
|
};
|
|
|
|
assertions = singleton {
|
|
assertion = cfg.mining.enable -> cfg.mining.address != "";
|
|
message = ''
|
|
You need a Monero address to receive mining rewards:
|
|
specify one using option monero.mining.address.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
|
|
|
|
}
|
|
|