Simon Bruder
174fac1889
This adds nixops deployment and deploys to the vserver in addition to netlify. Currently, the deploy target is not the production target, but instead uses the default hostname of hetzner cloud’s instances.
17 lines
239 B
Nix
17 lines
239 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nixops
|
|
python38
|
|
python38Packages.mutagen
|
|
zola
|
|
unzip
|
|
wget
|
|
];
|
|
|
|
shellHook = ''
|
|
export NIXOPS_DEPLOYMENT=schulpodcast-hcloud
|
|
'';
|
|
}
|