blob: 15e0ee8876a11bd68aab474869fa0dbc91c7b671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs ? import <nixpkgs> { } }:
let
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
settings = {
nix.enable = true;
nativeBuildInputs = [ nur.repos.rycee.firefox-addons-generator ];
};
in import ~/documents/nix/shells { inherit pkgs settings; }
|