golem: add golem-provider clan module

This commit is contained in:
DavHau
2024-08-14 22:03:20 +02:00
parent de31db2d00
commit 8b75b16ccf
6 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ lib, ... }:
let
inherit (lib) mkOption;
inherit (lib.types) nullOr str;
in
{
options.clan.golem-provider = {
account = mkOption {
type = nullOr str;
description = ''
Ethereum address for payouts.
Leave empty to automatically generate a new address upon first start.
'';
default = null;
};
};
}