add db host

This commit is contained in:
zack 2024-10-21 20:07:59 -04:00
parent 69fd778120
commit ddad66dda4
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35

View file

@ -94,6 +94,12 @@
example = "/run/secrets/db_password";
description = "File containing the database password";
};
host = mkOption rec {
type = types.str;
default = "localhost";
example = default;
description = "Database host";
};
};
enableServer = mkOption rec {