summaryrefslogtreecommitdiff
path: root/Omni/Cloud/Grocy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'Omni/Cloud/Grocy.nix')
-rw-r--r--Omni/Cloud/Grocy.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/Omni/Cloud/Grocy.nix b/Omni/Cloud/Grocy.nix
new file mode 100644
index 0000000..697c2f1
--- /dev/null
+++ b/Omni/Cloud/Grocy.nix
@@ -0,0 +1,17 @@
+{ ... }:
+
+{
+ services.grocy = {
+ enable = true;
+ hostName = "grocy.simatime.com";
+ nginx.enableSSL = false; # set in Web.nix
+ settings = {
+ calendar = {
+ firstDayOfWeek = 1;
+ showWeekNumber = true;
+ };
+ currency = "USD";
+ culture = "en";
+ };
+ };
+}