From 71505df763c4a34161459dd8099025c6711f89a0 Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 28 Jun 2015 13:53:42 +0200 Subject: common nixpkgs: use types.str --- modules/common/nixpkgs.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/common/nixpkgs.nix b/modules/common/nixpkgs.nix index 9f8e702..36ebbb0 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."; }; }; } -- cgit v1.2.3