atuin config: init

This commit is contained in:
makefu 2024-09-07 00:17:56 +02:00
parent 3994bed18f
commit 1b8095b821
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -0,0 +1,12 @@
{
services.atuin = {
enable = true;
maxHistory = 900001;
};
services.postgresql.enable = true;
services.nginx.virtualHosts."atuin.euer.krebsco.de" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:${config.services.atuin.port}";
};
}