nixfleet/modules/atuin/default.nix
Andrea Ciceri 2d3e4844b7
Start refactoring
- remove emacs
- remove inputs
- trying to speed up evaluation
- update inputs
2024-09-19 14:34:37 +02:00

14 lines
292 B
Nix

{config, ...}: {
services.atuin = {
enable = true;
openFirewall = false; # use only in the VPN
port = 8889;
host = "0.0.0.0";
openRegistration = true;
};
networking.firewall.interfaces."wg0" = {
allowedTCPPorts = [
config.services.atuin.port
];
};
}