8 lines
179 B
Nix
8 lines
179 B
Nix
{ config, ... }: {
|
|
services.atuin = {
|
|
enable = true;
|
|
host = "${config.networking.hostName}.private";
|
|
maxHistoryLength = 999999;
|
|
openRegistration = false;
|
|
};
|
|
}
|