mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-02 19:23:58 -05:00
17 lines
317 B
Nix
17 lines
317 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
services.nginx.virtualHosts."grocy.wanderingcrow.net" = {
|
|
forceSSL = true;
|
|
useACMEHost = "grocy.wanderingcrow.net";
|
|
};
|
|
|
|
services.grocy = {
|
|
enable = true;
|
|
hostName = "grocy.wanderingcrow.net";
|
|
nginx.enableSSL = false;
|
|
};
|
|
}
|