tech-ingolf-wagner-de/default.nix
2018-08-19 15:46:34 +02:00

28 lines
307 B
Nix

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