17 lines
250 B
Nix
17 lines
250 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
assets,
|
|
...
|
|
}:
|
|
{
|
|
|
|
healthchecks.closed.retiolum.ports.atuin = [ config.services.atuin.port ];
|
|
|
|
services.atuin = {
|
|
enable = true;
|
|
host = "0.0.0.0";
|
|
maxHistoryLength = 999999;
|
|
openRegistration = false;
|
|
};
|
|
}
|