Compare commits

..

No commits in common. "63434c8309946f8f1e92a0b1ec7fc887e9e80c75" and "3a4568bc69e5b6e91e750fbaf6ec6142a0879954" have entirely different histories.

7 changed files with 1 additions and 40 deletions

View File

@ -237,7 +237,6 @@
hostnames = {
git = "git.${baseName}";
influxdb = "influxdb.${baseName}";
irc = "irc.${baseName}";
metrics = "metrics.${baseName}";
prometheus = "prom.${baseName}";
paperless = "paper.${baseName}";

View File

@ -59,7 +59,6 @@ inputs.nixpkgs.lib.nixosSystem {
giteaRunner.enable = true;
services.caddy.enable = true;
services.grafana.enable = true;
services.thelounge.enable = true;
services.openssh.enable = true;
services.victoriametrics.enable = true;
services.influxdb2.enable = true;

View File

@ -107,10 +107,6 @@
type = lib.types.str;
description = "Hostname for download services.";
};
irc = lib.mkOption {
type = lib.types.str;
description = "Hostname for IRC services.";
};
};
};

View File

@ -4,6 +4,7 @@
home-manager.users.${config.user}.programs.jujutsu = {
enable = true;
enableFishIntegration = false; # Temp: not working
# https://github.com/martinvonz/jj/blob/main/docs/config.md
settings = {

View File

@ -11,7 +11,6 @@
./calibre.nix
./cloudflare-tunnel.nix
./cloudflare.nix
./irc.nix
./gitea-runner.nix
./gitea.nix
./gnupg.nix

View File

@ -50,7 +50,6 @@ in {
dashboards.settings.providers = [{
name = "test";
type = "file";
allowUiUpdates = true;
options.path = "${
(pkgs.writeTextDir "dashboards/dashboard.json" (builtins.toJSON {
annotations = {

View File

@ -1,32 +0,0 @@
{ config, ... }: {
config = {
services.thelounge = {
public = false;
port = 9000;
extraConfig = {
reverseProxy = true;
maxHistory = 10000;
};
};
# Adding new users:
# nix shell nixpkgs#thelounge
# sudo su - thelounge -s /bin/sh -c "thelounge add myuser"
# Allow web traffic to Caddy
caddy.routes = [{
match = [{ host = [ config.hostnames.irc ]; }];
handle = [{
handler = "reverse_proxy";
upstreams = [{
dial =
"localhost:${builtins.toString config.services.thelounge.port}";
}];
}];
}];
};
}