summaryrefslogtreecommitdiff
path: root/home/pkgs/firefoxPackages/shell.nix
blob: db7179daff2c03a49403d3d4700c26a7722058ef (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs ? import <nixpkgs> { } }:

let
  nur = import (builtins.fetchTarball
    "https://github.com/nix-community/NUR/archive/master.tar.gz") {
      inherit pkgs;
    };
  settings = {
    nativeBuildInputs = [ nur.repos.rycee.mozilla-addons-to-nix ];
  };
in import ~/.config/venv-manager { inherit pkgs settings; }