Add grocy service

main
Emelie Graven 2022-10-12 05:25:46 +02:00
parent 487523ce55
commit b738c1451f
No known key found for this signature in database
GPG Key ID: 1098DC5C94CB1C87
2 changed files with 11 additions and 0 deletions

View File

@ -13,6 +13,7 @@
./services/synapse.nix
./services/ttrss.nix
./services/gitea.nix
./services/grocy.nix
./services/restic.nix
./services/vaultwarden.nix
./services/wireguard.nix

View File

@ -0,0 +1,10 @@
{ config, ... }:
{
services.grocy = {
enable = true;
hostName = grocy.graven.dev;
settings = {
currency = "DKK";
calendar.firstDayOfWeek = 1
}
}