nixos/gogoclient: add types
This commit is contained in:
parent
e5ce05cc1e
commit
f2764e1f71
|
@ -28,6 +28,7 @@ in
|
||||||
|
|
||||||
username = mkOption {
|
username = mkOption {
|
||||||
default = "";
|
default = "";
|
||||||
|
type = types.str;
|
||||||
description = ''
|
description = ''
|
||||||
Your Gateway6 login name, if any.
|
Your Gateway6 login name, if any.
|
||||||
'';
|
'';
|
||||||
|
@ -42,6 +43,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
server = mkOption {
|
server = mkOption {
|
||||||
|
type = types.str;
|
||||||
default = "anonymous.freenet6.net";
|
default = "anonymous.freenet6.net";
|
||||||
example = "broker.freenet6.net";
|
example = "broker.freenet6.net";
|
||||||
description = "The Gateway6 server to be used.";
|
description = "The Gateway6 server to be used.";
|
||||||
|
|
Loading…
Reference in New Issue