lewa/shell.nix

22 lines
485 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs { };
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
dyson = pkgs.callPackage ./nix/dyson.nix { };
tex = pkgs.callPackage ./nix/texlive.nix { };
in pkgs.mkShell {
buildInputs = with pkgs; [
dyson
kindlegen
kubectl
kubectx
mdbook
nur.repos.mic92.pandoc-bin
tex
nur.repos.xe.zathura
];
}