Files
nixos/hosts/linode/rei.nix
T

16 lines
235 B
Nix
Raw Normal View History

2023-05-11 14:33:30 +00:00
{ ... }:
{
services = {
odoo = {
enable = true;
domain = "doublel.thehellings.com";
settings.options = {
db_host = "localhost";
db_port = "5432";
db_user = "odoo";
dbfilter = "^doublel.*$";
};
};
};
}