nixfiles/hosts/hetzner-arm/containers/grocy/profiles/grocy.nix

13 lines
229 B
Nix
Raw Normal View History

2024-02-08 20:21:35 +00:00
{...}: {
services.grocy = {
enable = true;
hostName = "grocy.owo.monster";
nginx.enableSSL = false;
settings = {
currency = "GBP";
culture = "en_GB";
calendar.firstDayOfWeek = 1;
};
};
}