1
0
Fork 0
dotfiles/system/nixos/atuin-sync.nix

25 lines
488 B
Nix

{
services.atuin = {
enable = true;
host = "127.0.0.1";
port = 8015;
openRegistration = false;
openFirewall = false;
};
services.nginx.virtualHosts."atuin-sync.kempkens.io" = {
listenAddresses = [ "100.122.253.109" "[fd7a:115c:a1e0::3a01:fd6d]" ];
quic = true;
http3 = true;
onlySSL = true;
useACMEHost = "kempkens.io";
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:8015";
};
};
}