common nixpkgs: use types.str
This commit is contained in:
parent
745071377f
commit
55d4b48803
@ -5,12 +5,12 @@ with lib;
|
|||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
nixpkgs.url = mkOption {
|
nixpkgs.url = mkOption {
|
||||||
type = types.string;
|
type = types.str;
|
||||||
description = "url of the remote repo";
|
description = "URL of the nixpkgs repository.";
|
||||||
};
|
};
|
||||||
nixpkgs.rev= mkOption {
|
nixpkgs.rev = mkOption {
|
||||||
type = types.string;
|
type = types.str;
|
||||||
description = "revision of the remote repo";
|
description = "Revision of the remote repository.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user