nixos-mods/options: add types to module options

secrix-issue25
Felix Stupp 2 months ago
parent 83d8fc41fa
commit bad7149f9c
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -19,6 +19,7 @@
This is used by other option{x-banananetwork} modules. This is used by other option{x-banananetwork} modules.
''; '';
type = with lib.types; listOf str;
example = lib.literalExpression '' example = lib.literalExpression ''
[ "ssh-ed25519 ..." ] [ "ssh-ed25519 ..." ]
''; '';
@ -28,6 +29,7 @@
description = '' description = ''
my username for most/all uses my username for most/all uses
''; '';
type = lib.types.str;
example = lib.literalExpression "zocker"; example = lib.literalExpression "zocker";
}; };

Loading…
Cancel
Save