many updates to lio and o001

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-04-25 08:59:32 -05:00
parent 214e6f289d
commit 06fe42789a
9 changed files with 230 additions and 119 deletions

View file

@ -0,0 +1,24 @@
{
config,
...
}:
{
services.atuin = {
enable = true;
openRegistration = false;
openFirewall = false;
host = "127.0.0.1";
port = 8888;
};
services.nginx.virtualHosts."atuin.joshuabell.xyz" = {
enableACME = true;
forceSSL = true;
locations = {
"/" = {
proxyWebsockets = true;
proxyPass = "http://127.0.0.1:${builtins.toString config.services.atuin.port}";
};
};
};
}