modules: services: add grocy
This commit is contained in:
parent
224e8f8548
commit
622f9c61e4
|
@ -9,6 +9,7 @@
|
|||
./drone
|
||||
./flood
|
||||
./gitea
|
||||
./grocy
|
||||
./indexers
|
||||
./jellyfin
|
||||
./lohr
|
||||
|
|
33
modules/services/grocy/default.nix
Normal file
33
modules/services/grocy/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue