diff options
Diffstat (limited to 'hm/soft/nixcord.nix')
| -rw-r--r-- | hm/soft/nixcord.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/hm/soft/nixcord.nix b/hm/soft/nixcord.nix index 77d4adb..e1345b2 100644 --- a/hm/soft/nixcord.nix +++ b/hm/soft/nixcord.nix @@ -2,6 +2,7 @@ inputs, config, lib, + pkgs, ... }: let @@ -12,6 +13,9 @@ in options.hm.soft.nixcord.enable = lib.mkEnableOption "nixcord configuration"; config = lib.mkIf cfg.enable { + home.packages = with pkgs; [ + equibop + ]; programs.nixcord = { enable = true; discord = { @@ -21,10 +25,10 @@ in vencord.enable = false; equicord.enable = true; }; - equibop = { - enable = true; - autoscroll.enable = true; - }; + # equibop = { + # enable = true; + # autoscroll.enable = true; + # }; config = { frameless = true; plugins = { |
