blob: fb9caf7ce457cdf5f064c2e55e8f6e606dc89a16 (
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 ~/code/nix/shells { inherit pkgs settings; }
|