34 lines
661 B
Nix
34 lines
661 B
Nix
|
# 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|