tech-ingolf-wagner-de/shell.nix

31 lines
337 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# needed pkgs
# -----------
buildInputs = with pkgs; [
hugo
blockdiag
nwdiag
seqdiag
actdiag
lessc
rake
feh
ion
inotify-tools
pandoc
];
# run this on start
# -----------------
shellHook = ''
export HELLO="world"
'';
}