system changes

This commit is contained in:
Jacob Janzen 2025-01-03 12:39:29 -06:00
parent 18789098db
commit 4ed40a2c6d
2 changed files with 26 additions and 0 deletions

View file

@ -6,6 +6,7 @@ Import various scripts useful on my system.
{
imports = [
./deploy-website.nix
./launcher.nix
./remove-quarantine.nix
];

View file

@ -0,0 +1,25 @@
#+title: Website Deploy Script
Deploy my website from a specified branch.
#+begin_src nix
{ config, pkgs, ... }:
{
home.file."./.local/bin/deploy-website" = {
executable = true;
text = ''
#+end_src
=ssh= into my server and run the deploy script, passing command line arguments to the script.
#+begin_src sh
#!/bin/sh
/usr/bin/ssh jjanzen.ca "sudo /usr/local/bin/deploy.sh "$@""
#+end_src
Close the block.
#+begin_src nix
'';
};
}
#+end_src