mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
terraria service: fixup worldPath option type
Otherwise, using the defaults results in a type error.
This commit is contained in:
parent
33088accc8
commit
d893c86b34
|
@ -64,7 +64,7 @@ in
|
|||
};
|
||||
|
||||
worldPath = mkOption {
|
||||
type = types.path;
|
||||
type = types.nullOr types.path;
|
||||
default = null;
|
||||
description = ''
|
||||
The path to the world file (<literal>.wld</literal>) which should be loaded.
|
||||
|
|
Loading…
Reference in a new issue