diff options
Diffstat (limited to 'hm/soft')
| -rw-r--r-- | hm/soft/chat.nix | 18 | ||||
| -rw-r--r-- | hm/soft/nixcord.nix | 6 | ||||
| -rw-r--r-- | hm/soft/soft.nix | 1 |
3 files changed, 21 insertions, 4 deletions
diff --git a/hm/soft/chat.nix b/hm/soft/chat.nix new file mode 100644 index 0000000..61c1f92 --- /dev/null +++ b/hm/soft/chat.nix @@ -0,0 +1,18 @@ +{ + config, + pkgs, + lib, + ... +}: +let + cfg = config.hm.soft.chat; +in +{ + options.hm.soft.chat.enable = lib.mkEnableOption "chatting apps"; + config = lib.mkIf cfg.enable { + home.packages = with pkgs; [ + equibop + gajim + ]; + }; +} diff --git a/hm/soft/nixcord.nix b/hm/soft/nixcord.nix index bd43501..ee732e8 100644 --- a/hm/soft/nixcord.nix +++ b/hm/soft/nixcord.nix @@ -14,13 +14,11 @@ in options.hm.soft.nixcord.enable = lib.mkEnableOption "nixcord configuration"; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ - stoat-desktop - element-desktop - gajim equibop + gajim ]; programs.nixcord = { - # enable = true; + enable = true; discord = { enable = true; autoscroll.enable = true; diff --git a/hm/soft/soft.nix b/hm/soft/soft.nix index f6a9a69..0bbe0cf 100644 --- a/hm/soft/soft.nix +++ b/hm/soft/soft.nix @@ -2,6 +2,7 @@ { imports = [ ./browser.nix + ./chat.nix ./email.nix ./kdenlive.nix ./mangohud.nix |
