mirror of
https://github.com/astro/buzzrelay.git
synced 2024-11-25 13:30:58 +00:00
nixos-module: minimalize db config
This commit is contained in:
parent
6056f781f0
commit
7856385df0
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
||||||
listen_port = cfg.listenPort;
|
listen_port = cfg.listenPort;
|
||||||
priv_key_file = cfg.privKeyFile;
|
priv_key_file = cfg.privKeyFile;
|
||||||
pub_key_file = cfg.pubKeyFile;
|
pub_key_file = cfg.pubKeyFile;
|
||||||
db = "host=localhost user=${cfg.user} dbname=${cfg.database}";
|
db = "dbname=${cfg.database}";
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
lib.mkIf cfg.enable {
|
lib.mkIf cfg.enable {
|
||||||
|
|
Loading…
Reference in a new issue