added grocy server

fixes #30.
This commit is contained in:
Gabe Venberg 2024-10-18 22:54:20 +02:00
parent 811dfa165e
commit c21b1c5b5e
3 changed files with 55 additions and 39 deletions

15
configs/nixos/grocy.nix Normal file
View file

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