1
1

WIP
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Gitea Actions Demo / build-site (push) Successful in 4s

This commit is contained in:
2026-01-04 02:12:20 -05:00
parent fb6d498ad5
commit 84a9bf8204
4 changed files with 14 additions and 13 deletions

View File

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

View File

@@ -5,11 +5,12 @@
./cutesealfanpage.love.nix
# ./ewanick.com.nix
./ewanick.com.nix
./git.ewanick.com.nix
# ./paperless.ewanick.com.nix
./fancytypist.com.nix
# ./paperless.ewanick.com.nix
];
# 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";
HOST = "localhost";
PORT = 5567;
emanote-version = "1.4.0";
emanote-version = "1.4.0.0";
in {
services.caddy = {
enable = true;
@@ -17,17 +17,18 @@ in {
};
};
systemd.services = {
systemd.user.services = {
ewanick-site = {
enable = true;
description = "A blog powered by Emanote running solely on Markdown files.";
path = with pkgs; [
nix
git
];
path = with pkgs; [nix git];
wantedBy = ["multi-user.target"];
script = ''
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}
'';
};
};

View File

@@ -35,7 +35,7 @@ in {
};
};
systemd.services = {
systemd.user.services = {
fancyTypistDotDev-site = {
enable = false;
description = "The Haskell Servant executable server that hosts my FancyTypist.dev site.";