73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.services.lambdabot;
|
||
|
|
||
|
rc = builtins.toFile "script.rc" cfg.script;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
|
||
|
### configuration
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.lambdabot = {
|
||
|
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "Enable the Lambdabot IRC bot";
|
||
|
};
|
||
|
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.lambdabot;
|
||
|
description = "Used lambdabot package";
|
||
|
};
|
||
|
|
||
|
script = mkOption {
|
||
|
type = types.str;
|
||
|
default = "";
|
||
|
description = "Lambdabot script";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
### implementation
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
|
||
|
systemd.services.lambdabot = {
|
||
|
description = "Lambdabot daemon";
|
||
|
after = [ "network.target" ];
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
# Workaround for https://github.com/lambdabot/lambdabot/issues/117
|
||
|
script = ''
|
||
|
mkdir -p ~/.lambdabot
|
||
|
cd ~/.lambdabot
|
||
|
exec ${cfg.package}/bin/lambdabot -e 'rc ${rc}'
|
||
|
'';
|
||
|
serviceConfig.User = "lambdabot";
|
||
|
};
|
||
|
|
||
|
users.extraUsers.lambdabot = {
|
||
|
group = "lambdabot";
|
||
|
description = "Lambdabot daemon user";
|
||
|
home = "/var/lib/lambdabot";
|
||
|
createHome = true;
|
||
|
uid = config.ids.uids.lambdabot;
|
||
|
};
|
||
|
|
||
|
users.extraGroups.lambdabot.gid = config.ids.gids.lambdabot;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|