mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00

weechat can run in TUI or headless mode. Introduce the option `headless` for specifying that. Based on the setting, it configures the appropriate binary in the `binary` option and it also configures the systemd unit accordingly. `headless` is disabled by default. This doesn't change the current behaviour. Signed-off-by: Felix Singer <felixsinger@posteo.net>
92 lines
2.3 KiB
Nix
92 lines
2.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.services.weechat;
|
|
in
|
|
{
|
|
options.services.weechat = {
|
|
enable = lib.mkEnableOption "weechat";
|
|
|
|
package = lib.mkPackageOption pkgs "weechat" { };
|
|
|
|
root = lib.mkOption {
|
|
description = "Weechat state directory.";
|
|
type = lib.types.path;
|
|
default = "/var/lib/weechat";
|
|
};
|
|
|
|
sessionName = lib.mkOption {
|
|
description = "Name of the `screen` session for weechat.";
|
|
default = "weechat-screen";
|
|
type = lib.types.str;
|
|
};
|
|
|
|
binary = lib.mkOption {
|
|
type = lib.types.path;
|
|
description = "Binary to execute.";
|
|
default =
|
|
if (!cfg.headless) then "${cfg.package}/bin/weechat" else "${cfg.package}/bin/weechat-headless";
|
|
defaultText = lib.literalExpression ''"''${cfg.package}/bin/weechat"'';
|
|
example = lib.literalExpression ''"''${cfg.package}/bin/weechat-headless"'';
|
|
};
|
|
|
|
headless = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Allows specifying if weechat should run in TUI or headless mode.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
users = {
|
|
groups.weechat = { };
|
|
users.weechat = {
|
|
group = "weechat";
|
|
isSystemUser = true;
|
|
};
|
|
};
|
|
|
|
systemd.tmpfiles.settings."weechat" = {
|
|
"${cfg.root}" = lib.mkIf (cfg.root != "/var/lib/weechat") {
|
|
d = {
|
|
user = "weechat";
|
|
group = "weechat";
|
|
mode = "750";
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.services.weechat = {
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
User = "weechat";
|
|
Group = "weechat";
|
|
ExecStart = lib.mkIf (cfg.headless) "${cfg.binary} --dir ${cfg.root} --stdout";
|
|
StateDirectory = lib.mkIf (cfg.root == "/var/lib/weechat") "weechat";
|
|
StateDirectoryMode = 750;
|
|
RemainAfterExit = "yes";
|
|
};
|
|
script =
|
|
lib.mkIf (!cfg.headless)
|
|
"exec ${config.security.wrapperDir}/screen -Dm -S ${cfg.sessionName} ${cfg.binary} --dir ${cfg.root}";
|
|
wantedBy = [ "multi-user.target" ];
|
|
wants = [ "network.target" ];
|
|
};
|
|
|
|
security.wrappers.screen = lib.mkIf (!cfg.headless) {
|
|
setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${pkgs.screen}/bin/screen";
|
|
};
|
|
};
|
|
|
|
meta.doc = ./weechat.md;
|
|
}
|