diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
| commit | a1f7f43c95c049628e826856ec589b339cd4f5db (patch) | |
| tree | a0f5bb10fc36f02ad6dbaebf1232ca2548f9ccfa /home/pkgs/firefoxPackages/shell.nix | |
initial commit
Diffstat (limited to 'home/pkgs/firefoxPackages/shell.nix')
| -rw-r--r-- | home/pkgs/firefoxPackages/shell.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/home/pkgs/firefoxPackages/shell.nix b/home/pkgs/firefoxPackages/shell.nix new file mode 100644 index 0000000..15e0ee8 --- /dev/null +++ b/home/pkgs/firefoxPackages/shell.nix @@ -0,0 +1,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; } |
