mail2-nixos-config/nginx.nix

11 lines
139 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
services.nginx = {
logError = "/dev/null";
appendConfig = ''
access_log off;
'';
};
}