about summary refs log tree commit diff stats
path: root/modules/by-name/gr/grocy/module.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-08-03 19:14:43 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-08-03 19:45:11 +0200
commit549ec4b961cdf411177eb2f3897a0df64cb677b3 (patch)
treefbfe3ff9c4e581f840d1c75690906693336aa9a1 /modules/by-name/gr/grocy/module.nix
parent{modules,test}/jitsi-meet: Init (diff)
downloadnixos-server-549ec4b961cdf411177eb2f3897a0df64cb677b3.zip
modules/grocy: Init grocy-new
Diffstat (limited to 'modules/by-name/gr/grocy/module.nix')
-rw-r--r--modules/by-name/gr/grocy/module.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/modules/by-name/gr/grocy/module.nix b/modules/by-name/gr/grocy/module.nix
new file mode 100644
index 0000000..28107f2
--- /dev/null
+++ b/modules/by-name/gr/grocy/module.nix
@@ -0,0 +1,51 @@
+{
+  config,
+  lib,
+  ...
+}: let
+  cfg = config.vhack.grocy;
+  data = "/var/lib/grocy";
+in {
+  options.vhack.grocy = {
+    enable = lib.mkEnableOption "grocy";
+
+    domain = lib.mkOption {
+      type = lib.types.str;
+      description = "FQDN for the grocy instance.";
+    };
+  };
+
+  config = lib.mkIf cfg.enable {
+    services.grocy = {
+      enable = true;
+
+      hostName = cfg.domain;
+      dataDir = data;
+
+      settings = {
+        currency = "EUR";
+        culture = "sv_SE";
+        calendar.firstDayOfWeek = 1;
+      };
+    };
+
+    vhack.persist.directories = [
+      {
+        directory = data;
+        user = "grocy";
+        group = "grocy";
+        mode = "0700";
+      }
+    ];
+
+    users = {
+      groups.grocy = {
+        gid = config.vhack.constants.ids.gids.grocy;
+      };
+      users.grocy = {
+        extraGroups = ["grocy"];
+        uid = config.vhack.constants.ids.uids.grocy;
+      };
+    };
+  };
+}