0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/redmine: Change type of services.redmine.stateDir to path

The option represents a path. So make it using the according type.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer 2024-12-09 02:07:41 +01:00
parent c2a7c0ae10
commit 1dae76d033

View file

@ -87,7 +87,7 @@ in
};
stateDir = mkOption {
type = types.str;
type = types.path;
default = "/var/lib/redmine";
description = "The state directory, logs and plugins are stored here.";
};