1
0
Fork 0
nix-config/hosts/mucbot/default.nix

34 lines
903 B
Nix

{ zentralwerk, config, pkgs, lib, tigger, ... }:
{
c3d2.deployment = {
server = "nomad";
mounts = [];
mountBase = "/glusterfs/fast/microvms/${config.networking.hostName}";
};
networking.hostName = "mucbot";
users.users.tigger = {
createHome = true;
isNormalUser = true;
group = "tigger";
};
users.groups.tigger = { };
services.tigger = {
enable = true;
user = "tigger";
group = "tigger";
inherit (pkgs.mucbot) jid;
inherit (pkgs.mucbot) password;
mucs =
[ "c3d2@chat.c3d2.de/Astrobot" "international@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?
}