feat[client]: add hexchat

This commit is contained in:
Leon Schwarzäugl 2025-10-11 22:04:16 +02:00
parent c61bb5ba11
commit ca684173ac
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
4 changed files with 42 additions and 4 deletions

View file

@ -11176,7 +11176,6 @@ This holds packages that I can use as provided, or with small modifications (as
nicotine-plus
stable.transmission_3
mktorrent
hexchat
hugo
# kyria
@ -14662,6 +14661,29 @@ This service changes the screen hue at night. I am not sure if that really does
}
#+end_src
**** Hexchat
#+begin_src nix-ts :tangle modules/home/common/hexchat.nix
{ lib, config, nixosConfig ? config, ... }:
let
moduleName = "hexchat";
inherit (nixosConfig.repo.secrets.common.irc) irc_nick1;
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
programs.${moduleName} = {
enable = true;
settings = {
inherit irc_nick1;
};
};
};
}
#+end_src
**** vesktop
#+begin_src nix-ts :tangle modules/home/common/vesktop.nix