nixos-config/nixos/configs/sputnik/grocy.nix
2021-10-13 20:55:57 +02: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 ];
}