grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / web-apps / mainsail.nix
blobcfe4c5250b551aea1ed6044b1a40522c9e175681
1 { config, lib, pkgs, ... }:
2 with lib;
3 let
4   cfg = config.services.mainsail;
5   moonraker = config.services.moonraker;
6 in
8   options.services.mainsail = {
9     enable = mkEnableOption "a modern and responsive user interface for Klipper";
11     package = mkPackageOption pkgs "mainsail" { };
13     hostName = mkOption {
14       type = types.str;
15       default = "localhost";
16       description = "Hostname to serve mainsail on";
17     };
19     nginx = mkOption {
20       type = types.submodule
21         (import ../web-servers/nginx/vhost-options.nix { inherit config lib; });
22       default = { };
23       example = literalExpression ''
24         {
25           serverAliases = [ "mainsail.''${config.networking.domain}" ];
26         }
27       '';
28       description = "Extra configuration for the nginx virtual host of mainsail.";
29     };
30   };
32   config = mkIf cfg.enable {
33     services.nginx = {
34       enable = true;
35       upstreams.mainsail-apiserver.servers."${moonraker.address}:${toString moonraker.port}" = { };
36       virtualHosts."${cfg.hostName}" = mkMerge [
37         cfg.nginx
38         {
39           root = mkForce "${cfg.package}/share/mainsail";
40           locations = {
41             "/" = {
42               index = "index.html";
43               tryFiles = "$uri $uri/ /index.html";
44             };
45             "/index.html".extraConfig = ''
46               add_header Cache-Control "no-store, no-cache, must-revalidate";
47             '';
48             "/websocket" = {
49               proxyWebsockets = true;
50               proxyPass = "http://mainsail-apiserver/websocket";
51             };
52             "~ ^/(printer|api|access|machine|server)/" = {
53               proxyWebsockets = true;
54               proxyPass = "http://mainsail-apiserver$request_uri";
55             };
56           };
57         }
58       ];
59     };
60   };