about summary refs log tree commit diff
path: root/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
{ pkgs, ... }:

{
  config = {
    services.nginx.virtualHosts."wpcarro.dev" = {
      enableACME = true;
      forceSSL = true;
    };
  };
}