diff options
Diffstat (limited to 'modules/home-manager/nixcord.nix')
| -rw-r--r-- | modules/home-manager/nixcord.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix new file mode 100644 index 0000000..0be180b --- /dev/null +++ b/modules/home-manager/nixcord.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, inputs, ... }: + +{ + 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 + #quickCss = "some CSS"; # quickCSS file + config = { + #useQuickCss = true; # use our quickCSS + #themeLinks = [ # or use an online theme + # "https://raw.githubusercontent.com/link/to/some/theme.css" + #]; + frameless = true; # set some Vencord options + plugins = { + hideAttachments.enable = true; # Enable a Vencord plugin + ignoreActivities = { # Enable a plugin and set some options + enable = true; + ignorePlaying = true; + ignoreWatching = true; + }; + }; + }; + }; + }; +}
\ No newline at end of file |
