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.
76 lines
1.9 KiB
Nix
76 lines
1.9 KiB
Nix
{ 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 "XMRig Mining Software";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.xmrig;
|
|
defaultText = literalExpression "pkgs.xmrig";
|
|
example = literalExpression "pkgs.xmrig-mo";
|
|
description = lib.mdDoc "XMRig package to use.";
|
|
};
|
|
|
|
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 {
|
|
boot.kernelModules = [ "msr" ];
|
|
|
|
systemd.services.xmrig = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
description = "XMRig Mining Software Service";
|
|
serviceConfig = {
|
|
ExecStartPre = "${cfg.package}/bin/xmrig --config=${configFile} --dry-run";
|
|
ExecStart = "${cfg.package}/bin/xmrig --config=${configFile}";
|
|
# 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;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ ratsclub ];
|
|
};
|
|
}
|