nix/nixos/common/services/atuin.nix

10 lines
211 B
Nix
Raw Normal View History

2024-04-28 06:39:08 +02:00
{ ... }: {
services.atuin = {
enable = true;
port = 8888;
database.createLocally = true;
openRegistration = true;
};
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 8888 ];
}