mirror of
				https://github.com/nmasur/dotfiles
				synced 2025-11-04 12:53:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
let
 | 
						|
  inherit (config.nmasur.settings) hostnames;
 | 
						|
  cfg = config.nmasur.presets.services.thelounge;
 | 
						|
in
 | 
						|
{
 | 
						|
 | 
						|
  options.nmasur.presets.services.thelounge.enable = lib.mkEnableOption "TheLounge IRC chat service";
 | 
						|
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
 | 
						|
    services.thelounge = {
 | 
						|
      enable = true;
 | 
						|
      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
 | 
						|
    nmasur.presets.services.caddy.routes = [
 | 
						|
      {
 | 
						|
        match = [ { host = [ hostnames.irc ]; } ];
 | 
						|
        handle = [
 | 
						|
          {
 | 
						|
            handler = "reverse_proxy";
 | 
						|
            upstreams = [ { dial = "localhost:${builtins.toString config.services.thelounge.port}"; } ];
 | 
						|
          }
 | 
						|
        ];
 | 
						|
      }
 | 
						|
    ];
 | 
						|
 | 
						|
    # Configure Cloudflare DNS to point to this machine
 | 
						|
    services.cloudflare-dyndns.domains = [ hostnames.irc ];
 | 
						|
  };
 | 
						|
}
 |