snowflake/hosts/sora/services/atuin.nix

15 lines
342 B
Nix

{ lib, ... }:
{
networking.firewall.allowedTCPPorts = [ 8888 ];
services.atuin = {
enable = true;
openRegistration = false;
openFirewall = true;
host = "100.104.42.96";
port = 8888;
database = {
createLocally = lib.mkForce false;
uri = "postgres://atuin:atuin@100.94.214.100:5432/atuin";
};
};
}