Compare commits
4 Commits
9de5daa2ad
...
6fc3f85e37
| Author | SHA1 | Date | |
|---|---|---|---|
| 6fc3f85e37 | |||
| 5e8ed76d47 | |||
| 22d24b1ca4 | |||
| 25905e35ae |
@@ -59,5 +59,8 @@
|
|||||||
|
|
||||||
# Dawarich location tracking
|
# Dawarich location tracking
|
||||||
./public/dawarich.nix
|
./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.enable = true;
|
||||||
networking.wireless.networks = {
|
networking.wireless.networks = {
|
||||||
"BELL422 5G".pskRaw = "ext:PSK_HOME";
|
# "BELL422 5G".pskRaw = "ext:PSK_HOME";
|
||||||
"BELL422".pskRaw = "ext:PSK_HOME";
|
"BELL422".pskRaw = "ext:PSK_HOME";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
"openssl-1.1.1v"
|
"openssl-1.1.1v"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
chromium
|
chromium
|
||||||
@@ -25,6 +27,8 @@
|
|||||||
kdePackages.kdeconnect-kde
|
kdePackages.kdeconnect-kde
|
||||||
|
|
||||||
discord
|
discord
|
||||||
|
signal-desktop
|
||||||
|
element-desktop
|
||||||
zoom-us
|
zoom-us
|
||||||
|
|
||||||
anki
|
anki
|
||||||
|
|||||||
Reference in New Issue
Block a user