site/shell.nix

17 lines
250 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
2020-08-24 23:02:08 +02:00
pkgs.mkShell {
2020-10-10 20:56:59 +02:00
buildInputs = with pkgs; [
nixops
2020-08-24 23:02:08 +02:00
python38
python38Packages.mutagen
2020-10-10 10:04:50 +02:00
zola
2020-08-24 23:02:08 +02:00
unzip
wget
];
shellHook = ''
export NIXOPS_DEPLOYMENT=schulischer-schabernack-hcloud
'';
2020-08-24 23:02:08 +02:00
}