charybdis: types.{string => str}

This commit is contained in:
tv 2020-01-14 20:37:58 +01:00
parent c515d6c974
commit a553c3e280
1 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ in
enable = mkEnableOption "Charybdis IRC daemon"; enable = mkEnableOption "Charybdis IRC daemon";
config = mkOption { config = mkOption {
type = types.string; type = types.str;
description = '' description = ''
Charybdis IRC daemon configuration file. Charybdis IRC daemon configuration file.
''; '';
}; };
statedir = mkOption { statedir = mkOption {
type = types.string; type = types.str;
default = "/var/lib/charybdis"; default = "/var/lib/charybdis";
description = '' description = ''
Location of the state directory of charybdis. Location of the state directory of charybdis.
@ -36,7 +36,7 @@ in
}; };
user = mkOption { user = mkOption {
type = types.string; type = types.str;
default = "ircd"; default = "ircd";
description = '' description = ''
Charybdis IRC daemon user. Charybdis IRC daemon user.
@ -44,7 +44,7 @@ in
}; };
group = mkOption { group = mkOption {
type = types.string; type = types.str;
default = "ircd"; default = "ircd";
description = '' description = ''
Charybdis IRC daemon group. Charybdis IRC daemon group.