bier bal: fix regex
This commit is contained in:
parent
937c1bc02c
commit
79cad8349b
@ -61,7 +61,7 @@ let
|
||||
];
|
||||
hooks.PRIVMSG = [
|
||||
{
|
||||
pattern = "^bier bal(ance)*$";
|
||||
pattern = "^bier bal(an(ce)?)?$";
|
||||
activate = "match";
|
||||
command = {
|
||||
env = {
|
||||
@ -134,6 +134,7 @@ in {
|
||||
};
|
||||
r = {
|
||||
nick = "reaktor2|krebs";
|
||||
sendDelaySec = null;
|
||||
plugins = [
|
||||
{
|
||||
plugin = "register";
|
||||
|
@ -33,6 +33,10 @@ with import <stockholm/lib>;
|
||||
default = "reaktor2${optionalString (name != "default") "-${name}"}";
|
||||
type = types.filename;
|
||||
};
|
||||
sendDelaySec = mkOption {
|
||||
default = 0.7;
|
||||
type = types.nullOr types.float;
|
||||
};
|
||||
username = mkOption {
|
||||
default = self.config.systemd-service-name;
|
||||
type = types.username;
|
||||
|
Loading…
Reference in New Issue
Block a user