mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
15 lines
281 B
Nix
15 lines
281 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."ahoneybun.net" = {
|
|
root = "/mnt/DATA/Website/ahoneybun.net/public";
|
|
locations."/" = {
|
|
extraConfig = ''
|
|
default_type text/html;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|