add mirror

This commit is contained in:
zackartz 2024-05-03 15:40:27 -04:00
parent 326852c21f
commit 1310c4c7eb
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
3 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
services.nginx = {
enable = true;
package = pkgs.nginxStable.override {openssl = pkgs.libressl;};
virtualHosts = {
};
};
}