mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
17 lines
292 B
Nix
17 lines
292 B
Nix
{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;
|
|
};
|
|
}
|