old
 1{...}: {
 2  # Atuin server for shell history sync
 3  services.atuin = {
 4    enable = true;
 5    host = "127.0.0.1";
 6    port = 10423;
 7    openRegistration = false;
 8    database.createLocally = false; # Disable create PostgreSQL
 9    database.uri = "sqlite:///var/lib/atuin/atuin.db";
10  };
11
12  systemd.services.atuin = {
13    serviceConfig = {
14      StateDirectory = "atuin";
15      StateDirectoryMode = "0700";
16    };
17  };
18}