diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-10 01:22:16 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:55 +0200 |
commit | 421b0067dbeada035543fc1d1a886e8a76e049e9 (patch) | |
tree | f1169213edf2a7a4cdc200c895570a01d02b11f2 /overlays/databases | |
parent | bb7756f9d795efbea16309976337f9da7b473c58 (diff) | |
download | NUR-421b0067dbeada035543fc1d1a886e8a76e049e9.tar.gz NUR-421b0067dbeada035543fc1d1a886e8a76e049e9.tar.zst NUR-421b0067dbeada035543fc1d1a886e8a76e049e9.zip |
Stop using overlays in the middle of modules
Diffstat (limited to 'overlays/databases')
-rw-r--r-- | overlays/databases/postgresql/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlays/databases/postgresql/default.nix b/overlays/databases/postgresql/default.nix index ae589877..50d94967 100644 --- a/overlays/databases/postgresql/default.nix +++ b/overlays/databases/postgresql/default.nix | |||
@@ -1,5 +1,5 @@ | |||
1 | self: super: rec { | 1 | self: super: rec { |
2 | postgresql_11_custom = super.postgresql_11.overrideAttrs(old: { | 2 | postgresql = super.postgresql_11.overrideAttrs(old: { |
3 | # datadir in /var/lib/postgresql is named after psqlSchema | 3 | # datadir in /var/lib/postgresql is named after psqlSchema |
4 | passthru = old.passthru // { psqlSchema = "11.0"; }; | 4 | passthru = old.passthru // { psqlSchema = "11.0"; }; |
5 | configureFlags = old.configureFlags ++ [ "--with-pam" ]; | 5 | configureFlags = old.configureFlags ++ [ "--with-pam" ]; |