mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.whitebophir;
|
|
in {
|
|
options = {
|
|
services.whitebophir = {
|
|
enable = mkEnableOption (lib.mdDoc "whitebophir, an online collaborative whiteboard server (persistent state will be maintained under {file}`/var/lib/whitebophir`)");
|
|
|
|
package = mkOption {
|
|
default = pkgs.whitebophir;
|
|
defaultText = literalExpression "pkgs.whitebophir";
|
|
type = types.package;
|
|
description = lib.mdDoc "Whitebophir package to use.";
|
|
};
|
|
|
|
listenAddress = mkOption {
|
|
type = types.str;
|
|
default = "0.0.0.0";
|
|
description = lib.mdDoc "Address to listen on (use 0.0.0.0 to allow access from any address).";
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 5001;
|
|
description = lib.mdDoc "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;
|
|
HOST = toString cfg.listenAddress;
|
|
WBO_HISTORY_DIR = "/var/lib/whitebophir";
|
|
};
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
ExecStart = "${cfg.package}/bin/whitebophir";
|
|
Restart = "always";
|
|
StateDirectory = "whitebophir";
|
|
};
|
|
};
|
|
};
|
|
}
|