aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/nixcord.nix
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-29 12:53:21 +0200
committerschererleander <leander@schererleander.de>2025-07-29 12:53:21 +0200
commit9a8116cbc211f03982e3e4dfdc326df38b4a0574 (patch)
tree61df62ba2a6ca8297e90b48438b5cc2489b3bce1 /modules/home-manager/nixcord.nix
parent0c1a189c5385c580f9522757f9c3974242134cbe (diff)
chore: formatting
Diffstat (limited to 'modules/home-manager/nixcord.nix')
-rw-r--r--modules/home-manager/nixcord.nix11
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
+}