{ pkgs, depot, ... }: let inherit (depot.users.sterni.nix.html) __findFile withDoctype ; in { imports = [ ./nginx.nix ]; config = { services.nginx.virtualHosts."sterni.lv" = { enableACME = true; forceSSL = true; root = pkgs.writeTextFile { name = "sterni.lv-http-root"; destination = "/index.html"; text = withDoctype ( { } [ ( { } [ ( { charset = "utf-8"; } null) ( { } "no thoughts") ]) (<body> { } "🦩") ]); }; # TODO(sterni): tmp.sterni.lv locations."/tmp/".root = toString /srv/http; }; }; }