diff options
author | stuebinm | 2021-03-07 23:52:19 +0100 |
---|---|---|
committer | stuebinm | 2021-03-07 23:52:19 +0100 |
commit | 92c1ef1af95740077282d773242fdd1820c8d15b (patch) | |
tree | e8b6feb39975f4b1126eb49f2c7564e2cf3dae34 /default.nix | |
parent | 09eeb58abb279e1049493460a7a99124aa4d9a78 (diff) |
Added basic nixos module (and restructured some files)
Right now, this is capable of setting up a running instance of picarones
in a couple lines of config (both backend server and the webapp, using
nginx).
More options should still be added, especially to make the backend's port
configurable (but this requires adding features to the haskell code)
Diffstat (limited to '')
-rw-r--r-- | default.nix | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..d739a4c --- /dev/null +++ b/default.nix @@ -0,0 +1,80 @@ +{config, lib, pkgs, ...}: +let + picarones = import ./pkgs.nix { inherit pkgs; }; +in +with lib; +{ + options.services.picarones = { + enable = mkOption { + default = false; + example = true; + type = types.bool; + description = "'next slide please' as a service"; + }; + package = mkOption { + description = "the server package to use"; + default = picarones.picarones-hs; + type = types.package; + }; + port = mkOption { + description = "port at which the backend server should listen."; + default = 9000; + type = types.int; + }; + frontend = { + enable = mkOption { + description = "Whether to setup nginx to deliver the picarones frontend"; + default = true; + type = types.bool; + }; + package = mkOption { + description = "Which package provides the frontend app."; + default = picarones.picarones-elm; + type = types.package; + }; + domain = mkOption { + description = "Which domain nginx should listen on."; + default = ""; + type = types.str; + }; + proxyBackend = mkOption { + description = "whether to set up a proxy for the backend using nginx (on the same domain)."; + default = false; + type = types.bool; + }; + config = mkOption { + description = "extra options for nginx."; + default = {}; + type = types.attrs; + }; + }; + }; + + config = let cfg = config.services.picarones; in { + systemd.services.picarones-hs = { + description = "picarones backend server"; + path = [ cfg.package ]; + wantedBy = [ "multi-user.target" ]; + script = '' + ${cfg.package}/bin/picarones-hs + ''; + }; + + services.nginx = mkIf cfg.frontend.enable { + enable = true; + virtualHosts.${cfg.frontend.domain} = cfg.frontend.config // { + root = + # need to do it this (long) way since a user may change this value outside of this module + let ssl = config.services.nginx.virtualHosts.${cfg.frontend.domain}.enableSSL; + in (cfg.frontend.package.override { + baseurl = (if ssl then "https://" else "http://") + cfg.frontend.domain; + serverurl = (if ssl then "wss" else "ws") + "://${cfg.frontend.domain}/websocket"; + }).outPath; + locations."/websocket" = { + proxyPass = "http://localhost:9160"; + proxyWebsockets = true; + }; + }; + }; + }; +} |