aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/home-manager/nixcord.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix
index 26cd39c..92935c9 100644
--- a/modules/home-manager/nixcord.nix
+++ b/modules/home-manager/nixcord.nix
@@ -8,22 +8,23 @@
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;
+ #discord.enable = false;
+ #vesktop.enable = true;
#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"
- #];
+ themeLinks = [
+ # or use an online theme
+ "https://refact0r.github.io/system24/theme/system24.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;
- };
+ alwaysAnimate.enable = false;
+ hideAttachments.enable = true;
+ imageLink.enable = true;
+ imageZoom.enable = true;
+ translate.enable = true;
};
};
};