diff options
author | lassulus <lass@aidsballs.de> | 2015-05-07 10:54:29 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:17:20 +0200 |
commit | c9c54a6a091700a5912abee41cb8f578a27a12ff (patch) | |
tree | 958eca9dce51d64a401ba2a5cb744984bd304d4c /modules/lass | |
parent | b671586698224306a8942c7e310ceff093b500c3 (diff) |
add nixpkgs.nix
Diffstat (limited to 'modules/lass')
-rw-r--r-- | modules/lass/nixpkgs.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/lass/nixpkgs.nix b/modules/lass/nixpkgs.nix new file mode 100644 index 000000000..09b88672b --- /dev/null +++ b/modules/lass/nixpkgs.nix @@ -0,0 +1,16 @@ +{ config, lib, pkgs, ... }: + +with lib; + +{ + options = { + nixpkgs.url = mkOption { + type = types.string; + description = "url of the remote repo"; + }; + nixpkgs.rev= mkOption { + type = types.string; + description = "revision of the remote repo"; + }; + }; +} |