From c153a351659e4596acfc31f00bf594343cbfcd68 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 30 Jul 2026 14:05:39 +0200 Subject: modules: Use namespaces That might make it easier in the future to merge different server configs together (and thusly facilitate code-reuse.). --- modules/by-name/gr/grocy/module.nix | 51 ------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 modules/by-name/gr/grocy/module.nix (limited to 'modules/by-name/gr/grocy') diff --git a/modules/by-name/gr/grocy/module.nix b/modules/by-name/gr/grocy/module.nix deleted file mode 100644 index 28107f2..0000000 --- a/modules/by-name/gr/grocy/module.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ - 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; - }; - }; - }; -} -- cgit v1.3.1