snowflake/hosts/sora/services/atuin.nix

16 lines
342 B
Nix
Raw Normal View History

2024-02-08 12:04:15 -05:00
{ lib, ... }:
{
networking.firewall.allowedTCPPorts = [ 8888 ];
2024-02-05 21:24:43 -05:00
services.atuin = {
enable = true;
openRegistration = false;
2024-02-05 21:24:43 -05:00
openFirewall = true;
host = "100.104.42.96";
port = 8888;
database = {
createLocally = lib.mkForce false;
uri = "postgres://atuin:atuin@100.94.214.100:5432/atuin";
};
};
}