blob: 09b88672b271a89c1eeb5e94c0ccec38e2dc6c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
};
};
}
|