nixos-config/nixos/machines/chungus/atuin.nix

9 lines
149 B
Nix
Raw Normal View History

2023-08-31 11:50:58 +02:00
{ config, ... }: {
services.atuin = {
enable = true;
2024-04-06 10:32:23 +02:00
host = "0.0.0.0";
2023-08-31 11:50:58 +02:00
maxHistoryLength = 999999;
2023-12-23 22:46:58 +01:00
openRegistration = false;
2023-08-31 11:50:58 +02:00
};
}