gitea: use postgres package that is used for db service

This commit is contained in:
Sandro - 2023-04-27 21:47:12 +02:00
parent 5a28e8c527
commit a1e7af1abb
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,10 @@
microvm.mem = 4 * 1024;
environment.systemPackages = with pkgs; [ postgresql unzip ]; # used to restore database dumps
environment.systemPackages = with pkgs; [
# used to restore database dumps
config.services.postgresql.package unzip
];
networking = {
hostName = "gitea";