nix/nixos/common/services/atuin.nix
2024-04-28 13:39:08 +09:00

9 lines
211 B
Nix

{ ... }: {
services.atuin = {
enable = true;
port = 8888;
database.createLocally = true;
openRegistration = true;
};
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 8888 ];
}