aboutsummaryrefslogtreecommitdiff
path: root/modules/private/system/backup-2.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-10 01:22:16 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-10 01:22:16 +0200
commit9f16e659f129dd8acab7d086ef9822673a01ba06 (patch)
treee457a3aa743bf31f67d09ee9569bbda3cd5bf152 /modules/private/system/backup-2.nix
parenta071d8a6af7b8130047b3997c34b15f71089a4e5 (diff)
downloadNix-9f16e659f129dd8acab7d086ef9822673a01ba06.tar.gz
Nix-9f16e659f129dd8acab7d086ef9822673a01ba06.tar.zst
Nix-9f16e659f129dd8acab7d086ef9822673a01ba06.zip
Stop using overlays in the middle of modules
Diffstat (limited to 'modules/private/system/backup-2.nix')
-rw-r--r--modules/private/system/backup-2.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/private/system/backup-2.nix b/modules/private/system/backup-2.nix
index 3d263f5..a49c374 100644
--- a/modules/private/system/backup-2.nix
+++ b/modules/private/system/backup-2.nix
@@ -66,10 +66,12 @@
66 postgresql = { 66 postgresql = {
67 enable = true; 67 enable = true;
68 base = "/backup2"; 68 base = "/backup2";
69 mainPackage = pkgs.postgresql;
69 hosts = { 70 hosts = {
70 eldiron = { 71 eldiron = {
71 slot = "backup_2"; 72 slot = "backup_2";
72 connection = "postgresql://backup-2:${config.hostEnv.ldap.password}@eldiron.immae.eu"; 73 connection = "postgresql://backup-2:${config.hostEnv.ldap.password}@eldiron.immae.eu";
74 package = pkgs.postgresql;
73 }; 75 };
74 }; 76 };
75 }; 77 };