nixpkgs/nixos/modules/services/misc/weechat.nix

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

68 lines
1.5 KiB
Nix
Raw Normal View History

2018-01-06 13:25:13 +00:00
{
config,
lib,
pkgs,
...
}:
2018-01-06 13:25:13 +00:00
let
cfg = config.services.weechat;
in
{
options.services.weechat = {
enable = lib.mkEnableOption "weechat";
root = lib.mkOption {
2018-01-06 13:25:13 +00:00
description = "Weechat state directory.";
type = lib.types.str;
2018-01-06 13:25:13 +00:00
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 = "${pkgs.weechat}/bin/weechat";
defaultText = lib.literalExpression ''"''${pkgs.weechat}/bin/weechat"'';
example = lib.literalExpression ''"''${pkgs.weechat}/bin/weechat-headless"'';
};
2018-01-06 13:25:13 +00:00
};
config = lib.mkIf cfg.enable {
2018-01-06 13:25:13 +00:00
users = {
groups.weechat = { };
2018-01-06 13:25:13 +00:00
users.weechat = {
createHome = true;
group = "weechat";
home = cfg.root;
isSystemUser = true;
2018-01-06 13:25:13 +00:00
};
};
systemd.services.weechat = {
serviceConfig = {
User = "weechat";
Group = "weechat";
RemainAfterExit = "yes";
2018-01-06 13:25:13 +00:00
};
script = "exec ${config.security.wrapperDir}/screen -Dm -S ${cfg.sessionName} ${cfg.binary} --dir ${cfg.root}";
2018-01-06 13:25:13 +00:00
wantedBy = [ "multi-user.target" ];
wants = [ "network.target" ];
};
security.wrappers.screen = {
setuid = true;
owner = "root";
group = "root";
source = "${pkgs.screen}/bin/screen";
};
2018-01-06 13:25:13 +00:00
};
meta.doc = ./weechat.md;
2018-01-06 13:25:13 +00:00
}