38 lines
773 B
Nix
38 lines
773 B
Nix
|
# My blog setup
|
||
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.my.services.blog;
|
||
|
domain = config.networking.domain;
|
||
|
|
||
|
makeHostInfo = name: {
|
||
|
name = "${name}.${domain}";
|
||
|
value = "/var/www/${name}";
|
||
|
};
|
||
|
|
||
|
hostsInfo = [
|
||
|
{
|
||
|
name = domain;
|
||
|
value = "/var/www/blog";
|
||
|
}
|
||
|
] ++ builtins.map makeHostInfo [ "cv" "dev" "key" ];
|
||
|
|
||
|
hosts = builtins.listToAttrs hostsInfo;
|
||
|
|
||
|
makeVirtualHost = with lib.attrsets;
|
||
|
name: root: nameValuePair "${name}" {
|
||
|
forceSSL = true;
|
||
|
useACMEHost = "${domain}";
|
||
|
inherit root;
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
options.my.services.blog = {
|
||
|
enable = lib.mkEnableOption "Blog hosting";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.nginx.virtualHosts = with lib.attrsets;
|
||
|
mapAttrs' makeVirtualHost hosts;
|
||
|
};
|
||
|
}
|