stockholm/lass/2configs/atuin-server.nix

11 lines
157 B
Nix
Raw Normal View History

2022-11-21 23:51:05 +01:00
{ config, lib, pkgs, ... }:
{
2023-07-23 23:14:21 +02:00
services.atuin = {
2022-11-21 23:51:05 +01:00
enable = true;
2023-07-23 23:14:21 +02:00
host = "0.0.0.0";
maxHistoryLength = 1000000;
openFirewall = true;
2022-11-21 23:51:05 +01:00
};
}