]> Git — Sourcephile - julm/julm-nix.git/blob - hosts/nan2gua1/pgadmin.nix
bash: tweak aliases
[julm/julm-nix.git] / hosts / nan2gua1 / pgadmin.nix
1 {
2 pkgs,
3 config,
4 hostName,
5 host,
6 ...
7 }:
8 let
9 inherit (config.users) users;
10 in
11 {
12 services.pgadmin = {
13 enable = true;
14 initialEmail = "admin@localhost.localdomain";
15 initialPasswordFile = pgadmin/passwordFile.clear;
16 emailServer = {
17 enable = false;
18 };
19 };
20 systemd.services.pgadmin.serviceConfig = {
21 SupplementaryGroups = [ users."postgres".name ];
22 };
23 }