9 lines
211 B
Nix
9 lines
211 B
Nix
{ ... }: {
|
|
services.atuin = {
|
|
enable = true;
|
|
port = 8888;
|
|
database.createLocally = true;
|
|
openRegistration = true;
|
|
};
|
|
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [ 8888 ];
|
|
}
|