modules: services: add grocy

This commit is contained in:
Bruno BELANYI 2022-07-28 17:53:23 +02:00
parent 914b064f72
commit 2ba9c63f2e
2 changed files with 34 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./drone
./flood
./gitea
./grocy
./indexers
./jellyfin
./lohr

View File

@ -0,0 +1,33 @@
# Groceries and household management
{ config, lib, ... }:
let
cfg = config.my.services.grocy;
in
{
options.my.services.grocy = with lib; {
enable = mkEnableOption "Grocy household ERP";
};
config = lib.mkIf cfg.enable {
services.grocy = {
enable = true;
# The service sets up the reverse proxy automatically
hostName = "grocy.${config.networking.domain}";
nginx = {
enableSSL = true;
};
settings = {
currency = "EUR";
culture = "en";
calendar = {
# Start on Monday
firstDayOfWeek = 1;
showWeekNumber = true;
};
};
};
};
}