1
0
mirror of https://github.com/kmein/niveum synced 2026-03-23 05:11:08 +01:00

move back to zaatar

This commit is contained in:
2024-07-10 10:27:30 +02:00
parent 6d16b93530
commit 6e82ef3b5a
7 changed files with 97 additions and 44 deletions

16
systems/zaatar/atuin.nix Normal file
View File

@@ -0,0 +1,16 @@
{pkgs, ...}: {
services.postgresqlBackup = {
enable = true;
databases = ["atuin"];
};
services.postgresql.package = pkgs.postgresql_14;
services.atuin = {
host = "0.0.0.0";
openFirewall = true;
openRegistration = true;
port = 8888;
enable = true;
};
}