diff --git a/2configs/deployment/atuin.nix b/2configs/deployment/atuin.nix new file mode 100644 index 0000000..fbdf31c --- /dev/null +++ b/2configs/deployment/atuin.nix @@ -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}"; + }; +}