host glonass got added

This commit is contained in:
2026-07-09 22:26:14 +02:00
parent 0634620eee
commit a70f619feb
11 changed files with 291 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [weechat];
services = {
weechat = {
enable = true;
};
tor = {
enable = true;
controlSocket.enable = true;
client = {
enable = true;
socksListenAddress = {
addr = "127.0.0.1";
port = 9050;
};
};
settings = {
MapAddress = "palladium.libera.chat libera75jm6of4wxpxt4aynol3xjmbtxgfyjpu34ss4d7r7q2v5zrpyd.onion";
ControlPort = [ 9051 ];
};
};
};
}