diff options
author | Soispha <soispha@vhack.eu> | 2024-03-28 22:29:10 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-29 22:55:40 +0100 |
commit | dd4b6bcfc16c7c795b697195eb6703966352d9f4 (patch) | |
tree | 3519248c1eebe071fcfeb142b493a2e1c4a2db98 /services/nginx/hosts.nix | |
parent | chore(git-crypt): Remove `git-crypt` and associated encrypted files (diff) | |
download | nixos-server-dd4b6bcfc16c7c795b697195eb6703966352d9f4.tar.gz nixos-server-dd4b6bcfc16c7c795b697195eb6703966352d9f4.zip |
chore(git-crypt): Re-add previously encrypted files in decrypted form
Diffstat (limited to 'services/nginx/hosts.nix')
-rw-r--r-- | services/nginx/hosts.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/services/nginx/hosts.nix b/services/nginx/hosts.nix new file mode 100644 index 0000000..5d27af7 --- /dev/null +++ b/services/nginx/hosts.nix @@ -0,0 +1,12 @@ +{...}: [ + { + domain = "vhack.eu"; + root = "/etc/nginx/websites/vhack.eu"; + url = "https://codeberg.org/vhack.eu/website.git"; + } + { + domain = "b-peetz.de"; + root = "/etc/nginx/websites/b-peetz.de"; + url = "https://codeberg.org/bpeetz/b-peetz.de.git"; + } +] |