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

9 lines
179 B
Nix
Raw Normal View History

2023-08-31 11:50:58 +02:00
{ config, ... }: {
services.atuin = {
enable = true;
2023-12-23 00:11:26 +01:00
host = "${config.networking.hostName}.private";
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
};
}