{darwin,nixos}/clash: replace types.string with types.str
This commit is contained in:
parent
cba8083a0e
commit
33a42f5f82
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ in {
|
||||||
};
|
};
|
||||||
extraOpts = lib.mkOption {
|
extraOpts = lib.mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
type = lib.types.nullOr lib.types.string;
|
type = lib.types.nullOr lib.types.str;
|
||||||
description = "Extra command line options to use.";
|
description = "Extra command line options to use.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,7 +33,7 @@ in {
|
||||||
};
|
};
|
||||||
extraOpts = lib.mkOption {
|
extraOpts = lib.mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
type = lib.types.nullOr lib.types.string;
|
type = lib.types.nullOr lib.types.str;
|
||||||
description = "Extra command line options to use.";
|
description = "Extra command line options to use.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue