nix-config/configs/nixos/grocy.nix
2024-10-18 22:54:20 +02:00

16 lines
222 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
services.grocy = {
enable = true;
hostName = "grocy.venberg.xyz";
dataDir = "/storage/grocy";
nginx.enableSSL = true;
settings.currency = "EUR";
};
}