1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 19:11:08 +01:00
Files
niveum/systems/zaatar/atuin.nix

17 lines
292 B
Nix
Raw Normal View History

{pkgs, ...}: {
2022-12-03 08:25:47 +01:00
services.postgresqlBackup = {
enable = true;
databases = ["atuin"];
};
services.postgresql.package = pkgs.postgresql_14;
2022-11-30 10:21:59 +01:00
2023-06-06 20:40:31 +02:00
services.atuin = {
host = "0.0.0.0";
openFirewall = true;
openRegistration = true;
port = 8888;
2023-06-07 10:27:02 +02:00
enable = true;
2022-11-30 10:21:59 +01:00
};
}