tech-ingolf-wagner-de/default.nix

26 lines
298 B
Nix

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