Merge pull request 'modules: add thelounge' (#1075) from a-kenji-init/ergochat into main

This commit is contained in:
clan-bot
2024-04-02 09:07:18 +00:00
2 changed files with 21 additions and 5 deletions

View File

@@ -8,19 +8,20 @@
]; ];
}; };
borgbackup = ./borgbackup.nix; borgbackup = ./borgbackup.nix;
localbackup = ./localbackup.nix;
deltachat = ./deltachat.nix; deltachat = ./deltachat.nix;
graphical = ./graphical.nix;
localbackup = ./localbackup.nix;
localsend = ./localsend.nix;
matrix-synapse = ./matrix-synapse.nix; matrix-synapse = ./matrix-synapse.nix;
moonlight = ./moonlight.nix; moonlight = ./moonlight.nix;
sshd = ./sshd.nix;
sunshine = ./sunshine.nix; sunshine = ./sunshine.nix;
syncthing = ./syncthing.nix; syncthing = ./syncthing.nix;
sshd = ./sshd.nix; thelounge = ./thelounge.nix;
vm-user = ./vm-user.nix; vm-user = ./vm-user.nix;
graphical = ./graphical.nix; waypipe = ./waypipe.nix;
xfce = ./xfce.nix; xfce = ./xfce.nix;
xfce-vm = ./xfce-vm.nix; xfce-vm = ./xfce-vm.nix;
zt-tcp-relay = ./zt-tcp-relay.nix; zt-tcp-relay = ./zt-tcp-relay.nix;
localsend = ./localsend.nix;
waypipe = ./waypipe.nix;
}; };
} }

15
clanModules/thelounge.nix Normal file
View File

@@ -0,0 +1,15 @@
_: {
services.thelounge = {
enable = true;
public = true;
extraConfig = {
prefetch = true;
defaults = {
port = 6667;
tls = false;
};
};
};
clanCore.state.thelounde.folders = [ "/var/lib/thelounge" ];
}