mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.gotify;
|
|
in {
|
|
options = {
|
|
services.gotify = {
|
|
enable = mkEnableOption "Gotify webserver";
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
description = ''
|
|
Port the server listens to.
|
|
'';
|
|
};
|
|
|
|
stateDirectoryName = mkOption {
|
|
type = types.str;
|
|
default = "gotify-server";
|
|
description = ''
|
|
The name of the directory below {file}`/var/lib` where
|
|
gotify stores its runtime data.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.gotify-server = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
description = "Simple server for sending and receiving messages";
|
|
|
|
environment = {
|
|
GOTIFY_SERVER_PORT = toString cfg.port;
|
|
};
|
|
|
|
serviceConfig = {
|
|
WorkingDirectory = "/var/lib/${cfg.stateDirectoryName}";
|
|
StateDirectory = cfg.stateDirectoryName;
|
|
Restart = "always";
|
|
DynamicUser = "yes";
|
|
ExecStart = "${pkgs.gotify-server}/bin/server";
|
|
};
|
|
};
|
|
};
|
|
}
|