mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat[client]: add hexchat
This commit is contained in:
parent
c61bb5ba11
commit
ca684173ac
4 changed files with 42 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue