site/shell.nix
Simon Bruder 43fbd4b334
Set chosen brand name
Some details still have to be changed (see FIXME comments)
2020-11-24 20:51:24 +01:00

17 lines
250 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [
nixops
python38
python38Packages.mutagen
zola
unzip
wget
];
shellHook = ''
export NIXOPS_DEPLOYMENT=schulischer-schabernack-hcloud
'';
}