move storage to nixos 🎉
Some checks failed
Lint / lint (push) Failing after 1m38s
Plex Update / update (push) Successful in 1m52s

This commit is contained in:
Vivian 2023-12-28 18:45:12 +01:00
parent 5dcf1facee
commit f59148622e
11 changed files with 323 additions and 74 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
let
clientConfig = {
"m.homeserver" = {
@ -61,6 +61,26 @@ in
};
};
"0x76.dev" = {
enableACME = true;
forceSSL = true;
locations."/".extraConfig = ''
add_header Content-Type 'text/html; charset=UTF-8';
return 200 '<h1>Under Construction</h1>';
'';
};
"blog.xirion.net" = {
enableACME = true;
forceSSL = true;
locations."/".extraConfig = ''
add_header Content-Type 'text/html; charset=UTF-8';
return 200 '<h1>Under Construction</h1>';
'';
};
# Meow
"meowy.tech" = {
enableACME = true;
@ -113,6 +133,11 @@ in
};
};
};
"es.0x76.dev" = {
enableACME = true;
forceSSL = true;
root = inputs.essentials.packages.${pkgs.system}.default;
};
"cinny.chat.meowy.tech" = {
enableACME = true;
forceSSL = true;