diff options
author | tv <tv@shackspace.de> | 2015-06-28 13:53:42 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-06-28 13:53:42 +0200 |
commit | 55d4b488033549773353761898fc00879f21d612 (patch) | |
tree | 5b2d3d5dc95f623576be29c44878ea99cea92ab6 /modules/common | |
parent | 745071377f199bf3d2747e127ef152849f312053 (diff) |
common nixpkgs: use types.str
Diffstat (limited to 'modules/common')
-rw-r--r-- | modules/common/nixpkgs.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/common/nixpkgs.nix b/modules/common/nixpkgs.nix index 9f8e70271..36ebbb075 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."; }; }; } |