From 504b765606f02b610d74d259ddf2c85292e1f6c0 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 8 Feb 2025 03:19:30 -0800 Subject: add nix-topology; make configuration options less bad; restructure project a bit; add flake system looping --- nix/modules/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix/modules/nginx.nix') diff --git a/nix/modules/nginx.nix b/nix/modules/nginx.nix index e8c4682..bcc213a 100644 --- a/nix/modules/nginx.nix +++ b/nix/modules/nginx.nix @@ -1,7 +1,7 @@ -{ config, services, ... }: +{ config, lib, services, ... }: { services.nginx = { - enable = true; + enable = lib.mkDefault config.monorepo.profiles.server.enable; # Use recommended settings recommendedGzipSettings = true; -- cgit