Update some parts

This commit is contained in:
Bill Ewanick 2026-01-04 02:12:20 -05:00
parent fb6d498ad5
commit 2a05e1888b
4 changed files with 13 additions and 12 deletions

View file

@ -74,11 +74,10 @@
osds-site = { osds-site = {
layers = [ layers = [
{ {
# path = ./nixos-apps/ewanick.com; path = ./nixos-apps/ewanick.com;
# pathString = "nixos-apps/ewanick.com"; pathString = "nixos-apps/ewanick.com";
} }
]; ];
baseUrl = "ewanick.com";
port = 5567; port = 5567;
}; };
}; };

View file

@ -14,7 +14,7 @@ in {
}; };
}; };
systemd.user.services = { systemd.services = {
cutesealfanpage-hakyll-site = { cutesealfanpage-hakyll-site = {
enable = true; enable = true;
description = "The hakyll executable that rebuilds the site when a new blog post is created."; description = "The hakyll executable that rebuilds the site when a new blog post is created.";

View file

@ -5,11 +5,12 @@
./cutesealfanpage.love.nix ./cutesealfanpage.love.nix
# ./ewanick.com.nix ./ewanick.com.nix
./git.ewanick.com.nix ./git.ewanick.com.nix
# ./paperless.ewanick.com.nix
./fancytypist.com.nix ./fancytypist.com.nix
# ./paperless.ewanick.com.nix
]; ];
# when in doubt, clear away the certs with # when in doubt, clear away the certs with

View file

@ -3,7 +3,7 @@
PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps/ewanick.com"; PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps/ewanick.com";
HOST = "localhost"; HOST = "localhost";
PORT = 5567; PORT = 5567;
emanote-version = "1.4.0"; emanote-version = "1.4.0.0";
in { in {
services.caddy = { services.caddy = {
enable = true; enable = true;
@ -21,13 +21,14 @@ in {
ewanick-site = { ewanick-site = {
enable = true; enable = true;
description = "A blog powered by Emanote running solely on Markdown files."; description = "A blog powered by Emanote running solely on Markdown files.";
path = with pkgs; [ path = with pkgs; [nix git];
nix wantedBy = ["multi-user.target"];
git
];
script = '' script = ''
cd ${PROJECT_ROOT} cd ${PROJECT_ROOT}
nix run github:srid/emanote/${emanote-version} -- run --port ${PORT} --host ${HOST} nix run github:srid/emanote/${emanote-version} \
-- run \
--port ${toString PORT} \
--host ${HOST}
''; '';
}; };
}; };