infrastructure/hosts/hydrogen/services/atuin/default.nix
2023-04-23 20:13:39 +02:00

20 lines
337 B
Nix

{ ... }: {
services.atuin = {
enable = true;
openRegistration = false;
maxHistoryLength = 1000000000;
};
services.nginx = {
virtualHosts = {
"atuin.fainsin.bzh" = {
forceSSL = true;
enableACME = true;
locations."/" = { proxyPass = "http://127.0.0.1:8888"; };
};
};
};
}