9 lines
163 B
Nix
9 lines
163 B
Nix
|
{ config, ... }: {
|
||
|
services.atuin = {
|
||
|
enable = true;
|
||
|
host = config.tinc.private.ipv4;
|
||
|
maxHistoryLength = 999999;
|
||
|
openRegistration = true;
|
||
|
};
|
||
|
}
|