summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-06-28 13:53:42 +0200
committertv <tv@shackspace.de>2015-06-28 13:53:42 +0200
commit55d4b488033549773353761898fc00879f21d612 (patch)
tree5b2d3d5dc95f623576be29c44878ea99cea92ab6 /modules
parent745071377f199bf3d2747e127ef152849f312053 (diff)
common nixpkgs: use types.str
Diffstat (limited to 'modules')
-rw-r--r--modules/common/nixpkgs.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/common/nixpkgs.nix b/modules/common/nixpkgs.nix
index 9f8e7027..36ebbb07 100644
--- a/modules/common/nixpkgs.nix
+++ b/modules/common/nixpkgs.nix
@@ -5,12 +5,12 @@ with lib;
{
options = {
nixpkgs.url = mkOption {
- type = types.string;
- description = "url of the remote repo";
+ type = types.str;
+ description = "URL of the nixpkgs repository.";
};
- nixpkgs.rev= mkOption {
- type = types.string;
- description = "revision of the remote repo";
+ nixpkgs.rev = mkOption {
+ type = types.str;
+ description = "Revision of the remote repository.";
};
};
}