I showed you my source code, pls respond
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.

13 lines
257 B

3 years ago
3 years ago
  1. { config, pkgs, ... }:
  2. let
  3. myUpdateSite = pkgs.writeShellScriptBin "update-site" ''
  4. rsync -aP /etc/dotfiles/docs/public/ ubuntu@chrishayward.xyz:/var/www/chrishayward
  5. '';
  6. in {
  7. environment.systemPackages = [
  8. pkgs.hugo
  9. myUpdateSite
  10. ];
  11. }