1
0
Fork 0
piped-flake/module/nginx.nix

14 lines
192 B
Nix
Raw Normal View History

2023-09-08 10:59:27 +01:00
{
config,
lib,
...
}: let
2023-09-08 12:01:41 +01:00
inherit (lib.modules) mkIf;
2023-09-08 10:59:27 +01:00
cfg = config.services.piped;
in {
2023-09-08 12:01:41 +01:00
config = mkIf (cfg.enable && !cfg.disableNginx) {
2023-09-08 10:59:27 +01:00
services.nginx.enable = true;
};
}