summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-29 09:52:35 +0100
committerGitHub <noreply@github.com>2021-01-29 09:52:35 +0100
commit1f730f291802bd5b3fbd6031df518f3a10b37b3e (patch)
tree11b1ea88f3817584f2cd869d0528fbfc20116dfb /nixos/modules
parent94cafab3ad33fcf457966330b4b5ba57899ede50 (diff)
parentf2764e1f71cfb6f3c09a4430e0e596dc6d6da479 (diff)
Merge pull request #111126 from helsinki-systems/gogoclient
nixos/gogoclient: add types
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/gogoclient.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/gogoclient.nix b/nixos/modules/services/networking/gogoclient.nix
index 99455b183144..1205321818b9 100644
--- a/nixos/modules/services/networking/gogoclient.nix
+++ b/nixos/modules/services/networking/gogoclient.nix
@@ -28,6 +28,7 @@ in
username = mkOption {
default = "";
+ type = types.str;
description = ''
Your Gateway6 login name, if any.
'';
@@ -42,6 +43,7 @@ in
};
server = mkOption {
+ type = types.str;
default = "anonymous.freenet6.net";
example = "broker.freenet6.net";
description = "The Gateway6 server to be used.";