thelounge: foo

This commit is contained in:
hexchen 2021-08-18 20:00:11 +00:00
parent 7dbc22929b
commit d367269e87

View file

@ -23,7 +23,6 @@ in
address = "192.168.100.1"; address = "192.168.100.1";
interface = "eth0"; interface = "eth0";
}; };
networking.nameservers = [ "1.1.1.1" "1.0.0.1" ];
services.thelounge = { services.thelounge = {
enable = true; enable = true;
@ -40,7 +39,7 @@ in
tls = true; tls = true;
# yes, please do actually check the cert … # yes, please do actually check the cert …
rejectUnauthorized = true; rejectUnauthorized = true;
nick = "Guest%%%%"; nick = "haccGuest%%%%";
join = "#hacc-webchat"; join = "#hacc-webchat";
}; };
lockNetwork = true; lockNetwork = true;
@ -66,6 +65,15 @@ in
# override the package we use # override the package we use
systemd.services.thelounge.serviceConfig.ExecStart = systemd.services.thelounge.serviceConfig.ExecStart =
pkgs.lib.mkForce "${thelounge}/bin/thelounge start"; pkgs.lib.mkForce "${thelounge}/bin/thelounge start";
services.coredns = {
enable = true;
config = ''
.:53 {
forward . 1.1.1.1
}
'';
};
})).config.system.build.toplevel; })).config.system.build.toplevel;
}; };