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