htgen: scriptFile should be package or pathname

This commit is contained in:
lassulus 2022-12-12 18:34:00 +01:00
parent 1775e86752
commit 0802657364

View File

@ -41,7 +41,7 @@ let
}; };
scriptFile = mkOption { scriptFile = mkOption {
type = types.nullOr types.str; type = types.nullOr (types.either types.package types.pathname);
default = null; default = null;
}; };