nixos/mihomo: fix option type

This commit is contained in:
Peder Bergebakken Sundt 2024-10-02 10:57:28 +02:00
parent bf2f2c692c
commit ed72e91db1

View File

@ -18,7 +18,7 @@ in
package = lib.mkPackageOption pkgs "mihomo" { };
configFile = lib.mkOption {
type = lib.types.nullOr lib.types.path;
type = lib.types.path;
description = "Configuration file to use.";
};