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.

14 lines
311 B

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