website maybe

This commit is contained in:
twoneis 2025-02-06 18:51:46 +01:00
parent 65139a31ac
commit 3e96b08562
5 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, ... }: let
inherit (config) conf;
inherit (lib) mkIf;
in mkIf conf.nginx.enable {
services.nginx = {
enable = true;
};
}