Website for Chris & Scotia 2023
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
343 B

3 years ago
3 years ago
  1. { pkgs ? import <nixpkgs> { } }:
  2. let
  3. myUpdateWeddingSite = pkgs.writeShellScriptBin "update-wedding-site" ''
  4. ${pkgs.rsync}/bin/rsync -aP $HOME/.local/source/wedding-site/public/ ubuntu@chrishayward.xyz:/var/www/wedding
  5. '';
  6. in
  7. with pkgs;
  8. mkShell {
  9. buildInputs = [
  10. pkgs.hugo
  11. myUpdateWeddingSite
  12. ];
  13. shellHook = ''
  14. '';
  15. }