nixos/cgminer: fix type of services.cgminer.config option
This commit is contained in:
parent
8c2e6705b3
commit
3e9520f414
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ in
|
||||||
|
|
||||||
config = mkOption {
|
config = mkOption {
|
||||||
default = {};
|
default = {};
|
||||||
type = (types.either types.bool types.int);
|
type = types.attrsOf (types.either types.bool types.int);
|
||||||
description = "Additional config";
|
description = "Additional config";
|
||||||
example = {
|
example = {
|
||||||
auto-fan = true;
|
auto-fan = true;
|
||||||
|
|
Loading…
Reference in a new issue