nixpkgs/nixos/modules/services/web-apps/whitebophir.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-13 00:25:29 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.whitebophir;
in {
options = {
services.whitebophir = {
enable = mkEnableOption "whitebophir, an online collaborative whiteboard server (persistent state will be maintained under {file}`/var/lib/whitebophir`)";
2021-01-13 00:25:29 +00:00
package = mkPackageOption pkgs "whitebophir" { };
2021-01-13 00:25:29 +00:00
listenAddress = mkOption {
type = types.str;
default = "0.0.0.0";
description = "Address to listen on (use 0.0.0.0 to allow access from any address).";
};
2021-01-13 00:25:29 +00:00
port = mkOption {
type = types.port;
default = 5001;
description = "Port to bind to.";
2021-01-13 00:25:29 +00:00
};
};
};
config = mkIf cfg.enable {
systemd.services.whitebophir = {
description = "Whitebophir Service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
environment = {
PORT = toString cfg.port;
HOST = toString cfg.listenAddress;
2021-01-13 00:25:29 +00:00
WBO_HISTORY_DIR = "/var/lib/whitebophir";
};
serviceConfig = {
DynamicUser = true;
ExecStart = "${cfg.package}/bin/whitebophir";
Restart = "always";
StateDirectory = "whitebophir";
};
};
};
}