Files
clan-core/clanModules/golem-provider/interface.nix
2024-08-19 11:50:04 +02:00

21 lines
355 B
Nix

{ 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;
};
};
}