stockholm/modules/lass/nixpkgs.nix
2015-05-19 23:17:20 +02:00

17 lines
285 B
Nix

{ 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";
};
};
}