add mucbot container

This commit is contained in:
Astro 2019-04-07 00:58:42 +02:00
parent a9e0b9c77b
commit d2c3751323
3 changed files with 43 additions and 1 deletions

View File

@ -0,0 +1,30 @@
{ config, pkgs, lib, ... }:
let
tiggerGit = builtins.fetchTarball https://github.com/astro/tigger/archive/master.tar.gz;
in
{
imports =
[ ../../../lib/lxc-container.nix
../../../lib/shared.nix
"${tiggerGit}/module.nix"
];
networking.hostName = "mucbot";
networking.useNetworkd = true;
networking.defaultGateway = "172.22.99.4";
networking.useDHCP = lib.mkForce true;
services.tigger = {
enable = true;
jid = import ../../../secrets/hosts/mucbot/jabber-jid.nix;
password = import ../../../secrets/hosts/mucbot/jabber-password.nix;
muc = "c3d2@chat.c3d2.de/Astrobot";
};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "18.09"; # Did you read the comment?
}

View File

@ -24,4 +24,16 @@
storeKeysOnMachine = true;
};
};
"mucbot" =
{ ... }:
{
imports = [
hosts/storage-ng/mucbot/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201:28db:dff:fe6b:e89a";
storeKeysOnMachine = true;
};
};
}

@ -1 +1 @@
Subproject commit 57621eb036ccaee2ea1af85b31abe93526fd0e79
Subproject commit ae9bd8f1429a06c819e72266614a382b5bc7cdea