mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
nixos/immich: add option database.port (#345094)
This commit is contained in:
commit
a23db91282
1 changed files with 5 additions and 0 deletions
|
@ -148,6 +148,11 @@ in
|
||||||
example = "127.0.0.1";
|
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.";
|
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 {
|
user = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "immich";
|
default = "immich";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue