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
17
modules/home/common/hexchat.nix
Normal file
17
modules/home/common/hexchat.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -87,7 +87,6 @@
|
|||
nicotine-plus
|
||||
stable.transmission_3
|
||||
mktorrent
|
||||
hexchat
|
||||
hugo
|
||||
|
||||
# kyria
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue