dante service: fix config option type
The type was simply str but the default is null, thus resulting in a conversion error if the user fails to declare a value.
This commit is contained in:
parent
fafb6657c1
commit
2a4902dd80
@ -22,7 +22,7 @@ in
|
|||||||
|
|
||||||
config = mkOption {
|
config = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
type = types.str;
|
type = types.nullOr types.str;
|
||||||
description = ''
|
description = ''
|
||||||
Contents of Dante's configuration file
|
Contents of Dante's configuration file
|
||||||
NOTE: user.privileged/user.unprivileged are set by the service
|
NOTE: user.privileged/user.unprivileged are set by the service
|
||||||
|
Loading…
Reference in New Issue
Block a user