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

11 lines
157 B
Nix
Raw Normal View History

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