weechat: add NixOS module

wip/yesman
Yegor Timoshenko 7 years ago committed by Maximilian Bosch
parent 7158e7442f
commit b54987715b
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 1
      nixos/modules/module-list.nix
  2. 67
      nixos/modules/services/misc/weechat.nix

@ -406,6 +406,7 @@
./services/misc/taskserver
./services/misc/tzupdate.nix
./services/misc/uhub.nix
./services/misc/weechat.nix
./services/misc/xmr-stak.nix
./services/misc/zookeeper.nix
./services/monitoring/apcupsd.nix

@ -0,0 +1,67 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.weechat;
in
{
options.services.weechat = {
enable = mkEnableOption "weechat";
init = mkOption {
description = "Weechat commands applied at start, one command per line.";
example = ''
/set relay.network.password correct-horse-battery-staple
/relay add weechat 9001
'';
type = types.str;
default = "";
};
root = mkOption {
description = "Weechat state directory.";
type = types.str;
default = "/var/lib/weechat";
};
};
config = mkIf cfg.enable {
users = {
users.weechat = {
createHome = true;
group = "weechat";
home = cfg.root;
};
};
systemd.services.weechat = {
environment.WEECHAT_HOME = cfg.root;
serviceConfig = {
User = "weechat";
Group = "weechat";
};
script = "exec ${pkgs.screen}/bin/screen -D -m ${pkgs.weechat}/bin/weechat";
wantedBy = [ "multi-user.target" ];
wants = [ "network.target" ];
};
systemd.paths.weechat-fifo = {
pathConfig = {
PathExists = "${cfg.root}/weechat_fifo";
Unit = "weechat-apply-init.service";
};
wantedBy = [ "multi-user.target" ];
};
systemd.services.weechat-apply-init = let
initFile = pkgs.writeText "weechat-init" cfg.init;
in {
script = "sed 's/^/*/' ${initFile} > ${cfg.root}/weechat_fifo";
serviceConfig = {
Type = "oneshot";
User = "weechat";
Group = "weechat";
};
};
};
}
Loading…
Cancel
Save