system changes
This commit is contained in:
parent
18789098db
commit
4ed40a2c6d
2 changed files with 26 additions and 0 deletions
|
@ -6,6 +6,7 @@ Import various scripts useful on my system.
|
|||
|
||||
{
|
||||
imports = [
|
||||
./deploy-website.nix
|
||||
./launcher.nix
|
||||
./remove-quarantine.nix
|
||||
];
|
||||
|
|
25
macos.local/.flake/home/scripts/deploy-website.nix.org
Normal file
25
macos.local/.flake/home/scripts/deploy-website.nix.org
Normal 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
|
Loading…
Add table
Reference in a new issue