grocy time

This commit is contained in:
TheWanderingCrow 2025-01-26 21:34:28 -05:00
parent f3a56262bd
commit 1f6eb57917
2 changed files with 20 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./homepage.nix
./invidious.nix
./bookstack.nix
./grocy.nix
];
}

View file

@ -0,0 +1,19 @@
let
volumePath = "/overseer/services";
in
{
lib,
pkgs,
config,
...
}:
lib.mkIf config.user.overseer.enable {
services.grocy = {
enable = true;
hostName = "grocy.wanderingcrow.net";
nginx.enableSSL = false;
};
}