diff options
author | tv <tv@krebsco.de> | 2020-01-14 20:37:58 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-01-14 20:37:58 +0100 |
commit | a553c3e2803cceecc6e6f42dbcba6a179035274e (patch) | |
tree | ae8c1d1ed717614d2da7293efbfa1d8b71f1ec5b /krebs | |
parent | c515d6c9740238ec5d5ec916262b487e97883fee (diff) |
charybdis: types.{string => str}
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/charybdis.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krebs/3modules/charybdis.nix b/krebs/3modules/charybdis.nix index f4a7c1313..aa7c980c5 100644 --- a/krebs/3modules/charybdis.nix +++ b/krebs/3modules/charybdis.nix @@ -21,14 +21,14 @@ in enable = mkEnableOption "Charybdis IRC daemon"; config = mkOption { - type = types.string; + type = types.str; description = '' Charybdis IRC daemon configuration file. ''; }; statedir = mkOption { - type = types.string; + type = types.str; default = "/var/lib/charybdis"; description = '' Location of the state directory of charybdis. @@ -36,7 +36,7 @@ in }; user = mkOption { - type = types.string; + type = types.str; default = "ircd"; description = '' Charybdis IRC daemon user. @@ -44,7 +44,7 @@ in }; group = mkOption { - type = types.string; + type = types.str; default = "ircd"; description = '' Charybdis IRC daemon group. |