From 1eefc118bf0bbfe64576bcff39a6f706f3e5d9b0 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sat, 25 Feb 2023 19:06:06 +0100 Subject: [PATCH] tsuki: add postgres to environment --- hosts/tsuki/services/postgres.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/tsuki/services/postgres.nix b/hosts/tsuki/services/postgres.nix index a69fcf3..2cd151f 100644 --- a/hosts/tsuki/services/postgres.nix +++ b/hosts/tsuki/services/postgres.nix @@ -30,4 +30,6 @@ location = "${config.machineVars.dataDrives.drives.backup}/postgres"; backupAll = true; }; + + environment.systemPackages = [ config.services.postgresql.package ]; }