hosts/dandelion: pull changes

This commit is contained in:
Cilly Leang 2026-03-15 19:41:44 +11:00
parent 5a24bf690f
commit 6bea391858
Signed by: cilly
GPG key ID: 6500251E087653C9
7 changed files with 165 additions and 10 deletions

View file

@ -1,5 +1,17 @@
{ inputs, ... }: {
{ inputs, pkgs, ... }: let
pastel = inputs.pastel.packages.${pkgs.system}.default;
in {
services.nginx.virtualHosts = {
"cilly.moe" = {
useACMEHost = "cilly.moe";
forceSSL = true;
root = pastel.outPath;
};
"cilly.dev" = {
useACMEHost = "cilly.dev";
forceSSL = true;
root = pastel.outPath;
};
"lava.moe" = {
useACMEHost = "lava.moe";
forceSSL = true;