11 lines
159 B
Nix
11 lines
159 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.grocy = {
|
||
|
enable = true;
|
||
|
hostName = grocy.graven.dev;
|
||
|
settings = {
|
||
|
currency = "DKK";
|
||
|
calendar.firstDayOfWeek = 1
|
||
|
}
|
||
|
}
|