nixos-config/nixos/configs/robi/grocy.nix
2022-01-23 20:23:47 +01:00

17 lines
270 B
Nix

{ config, lib, pkgs, ... }:
{
services.grocy = {
enable = true;
settings = {
culture = "de";
currency = "EUR";
};
hostName = "grocy.ingolf-wagner.de";
nginx.enableSSL = true;
};
backup.dirs = [ config.services.grocy.dataDir ];
}