Compare commits
4 Commits
9de5daa2ad
...
6fc3f85e37
| Author | SHA1 | Date | |
|---|---|---|---|
| 6fc3f85e37 | |||
| 5e8ed76d47 | |||
| 22d24b1ca4 | |||
| 25905e35ae |
@@ -59,5 +59,8 @@
|
||||
|
||||
# Dawarich location tracking
|
||||
./public/dawarich.nix
|
||||
|
||||
# IRC web-bouncer/client
|
||||
./public/irc.nix
|
||||
];
|
||||
}
|
||||
|
||||
25
machines/hippocampus/servers/public/irc.nix
Normal file
25
machines/hippocampus/servers/public/irc.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ config, pkgs, lib, ... }: {
|
||||
services.thelounge = {
|
||||
enable = true;
|
||||
public = false;
|
||||
port = 7797;
|
||||
#plugins;
|
||||
#package;
|
||||
extraConfig = {
|
||||
# Caddy RP
|
||||
reverseProxy = true;
|
||||
defaults = {
|
||||
name = "Esper";
|
||||
host = "irc.esper.net";
|
||||
port = 6697;
|
||||
};
|
||||
};
|
||||
};
|
||||
services.caddy.virtualHosts = {
|
||||
"irc.glia.club" = {
|
||||
extraConfig = ''
|
||||
reverse_proxy localhost:${toString config.services.thelounge.port}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -67,7 +67,7 @@
|
||||
|
||||
networking.wireless.enable = true;
|
||||
networking.wireless.networks = {
|
||||
"BELL422 5G".pskRaw = "ext:PSK_HOME";
|
||||
# "BELL422 5G".pskRaw = "ext:PSK_HOME";
|
||||
"BELL422".pskRaw = "ext:PSK_HOME";
|
||||
};
|
||||
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
"openssl-1.1.1v"
|
||||
];
|
||||
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
chromium
|
||||
@@ -25,6 +27,8 @@
|
||||
kdePackages.kdeconnect-kde
|
||||
|
||||
discord
|
||||
signal-desktop
|
||||
element-desktop
|
||||
zoom-us
|
||||
|
||||
anki
|
||||
|
||||
Reference in New Issue
Block a user