diff options
author | Brendan Taylor | 2024-09-26 08:06:59 -0600 |
---|---|---|
committer | Brendan Taylor | 2024-09-26 08:06:59 -0600 |
commit | 8debc8df7982b227dcaae624316ce5de291466c6 (patch) | |
tree | df00fad2f927bcebfa95eb7b1a4c90476dfea082 | |
parent | aa79f54998ad81063b0a6116277609a5a08b3f92 (diff) |
nixos/immich: add option database.port
-rw-r--r-- | nixos/modules/services/web-apps/immich.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/immich.nix b/nixos/modules/services/web-apps/immich.nix index 1e46f3b855df..6fb9e2427ff7 100644 --- a/nixos/modules/services/web-apps/immich.nix +++ b/nixos/modules/services/web-apps/immich.nix @@ -148,6 +148,11 @@ in example = "127.0.0.1"; description = "Hostname or address of the postgresql server. If an absolute path is given here, it will be interpreted as a unix socket path."; }; + port = mkOption { + type = types.port; + default = 5432; + description = "Port of the postgresql server."; + }; user = mkOption { type = types.str; default = "immich"; |