summaryrefslogtreecommitdiffstats
path: root/modules/common/nixpkgs.nix
blob: 36ebbb075be0b6b4675398f313db93441e9df389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:

with lib;

{
  options = {
    nixpkgs.url = mkOption {
      type = types.str;
      description = "URL of the nixpkgs repository.";
    };
    nixpkgs.rev = mkOption {
      type = types.str;
      description = "Revision of the remote repository.";
    };
  };
}