diff options
Diffstat (limited to 'modules/home-manager/nixcord.nix')
| -rw-r--r-- | modules/home-manager/nixcord.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix index 0be180b..c45566b 100644 --- a/modules/home-manager/nixcord.nix +++ b/modules/home-manager/nixcord.nix @@ -1,10 +1,10 @@ -{ config, lib, pkgs, inputs, ... }: +{ config, lib, ... }: { options.nixcord.enable = lib.mkEnableOption "Enable nixcord and setup"; config = lib.mkIf config.nixcord.enable { programs.nixcord = { - enable = true; # enable Nixcord. Also installs discord package + enable = true; # enable Nixcord. Also installs discord package #quickCss = "some CSS"; # quickCSS file config = { #useQuickCss = true; # use our quickCSS @@ -13,8 +13,9 @@ #]; frameless = true; # set some Vencord options plugins = { - hideAttachments.enable = true; # Enable a Vencord plugin - ignoreActivities = { # Enable a plugin and set some options + hideAttachments.enable = true; # Enable a Vencord plugin + ignoreActivities = { + # Enable a plugin and set some options enable = true; ignorePlaying = true; ignoreWatching = true; @@ -23,4 +24,4 @@ }; }; }; -}
\ No newline at end of file +} |
