summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/whitebophir.nix
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2021-01-13 01:25:29 +0100
committerIngo Blechschmidt <iblech@web.de>2021-01-13 01:25:43 +0100
commit46292d7f861bd81b4a9181ecdeb2080eed924fc5 (patch)
tree4c86f90fa4faf61f4078133a2d3e5e2ef44e8fcf /nixos/modules/services/web-apps/whitebophir.nix
parentdeb9c1d027e8bc6dc385934e2d0b62e5969785ea (diff)
downloadnixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar.gz
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar.bz2
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar.lz
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar.xz
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.tar.zst
nixpkgs-46292d7f861bd81b4a9181ecdeb2080eed924fc5.zip
nixos/whitebophir: init
Diffstat (limited to 'nixos/modules/services/web-apps/whitebophir.nix')
-rw-r--r--nixos/modules/services/web-apps/whitebophir.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/whitebophir.nix b/nixos/modules/services/web-apps/whitebophir.nix
new file mode 100644
index 00000000000..a19812547c4
--- /dev/null
+++ b/nixos/modules/services/web-apps/whitebophir.nix
@@ -0,0 +1,45 @@
+{ 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 <filename>/var/lib/whitebophir</filename>)";
+
+      package = mkOption {
+        default = pkgs.whitebophir;
+        defaultText = "pkgs.whitebophir";
+        type = types.package;
+        description = "Whitebophir package to use.";
+      };
+
+      port = mkOption {
+        type = types.port;
+        default = 5001;
+        description = "Port to bind to.";
+      };
+    };
+  };
+
+  config = mkIf cfg.enable {
+    systemd.services.whitebophir = {
+      description = "Whitebophir Service";
+      wantedBy    = [ "multi-user.target" ];
+      after       = [ "network.target" ];
+      environment = {
+        PORT            = "${toString cfg.port}";
+        WBO_HISTORY_DIR = "/var/lib/whitebophir";
+      };
+
+      serviceConfig = {
+        DynamicUser    = true;
+        ExecStart      = "${cfg.package}/bin/whitebophir";
+        Restart        = "always";
+        StateDirectory = "whitebophir";
+      };
+    };
+  };
+}