Skip to content

Commit 3a66bd1

Browse files
committed
nixos/sftpgo: change type of dataDir option to path
The dataDir options describes a path, so it should be an option of type path.
1 parent 736d58b commit 3a66bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/web-apps/sftpgo.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ in
3535
};
3636

3737
dataDir = mkOption {
38-
type = types.str;
38+
type = types.path;
3939
default = "/var/lib/sftpgo";
4040
description = ''
4141
The directory where SFTPGo stores its data files.

0 commit comments

Comments
 (0)