From 5da4af521e038d769b647932d5e887b2f1805a3c Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 16 Dec 2025 01:43:26 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Require=20discord=20for=20Zed=20?= =?UTF-8?q?rich=20presence=20and=20add=20oxlint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/home/apps/zed/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/home/apps/zed/default.nix b/modules/home/apps/zed/default.nix index 22a9e00..3ef7090 100644 --- a/modules/home/apps/zed/default.nix +++ b/modules/home/apps/zed/default.nix @@ -98,7 +98,7 @@ in html = true; svelte = true; scss = true; - biome = true; # Formatting and utility tool, like ESlint, prettier, etc... + oxc = true; # Languages nix = true; @@ -117,8 +117,7 @@ in catppuccin-icons = mkIf config.catppuccin.enable true; # Other - discord-presence = true; - git-firefly = true; + discord-presence = mkIf config.programs.nixcord.enable true; wakatime = true; }; }; @@ -145,6 +144,9 @@ in php phpPackages.composer pretty-php + + ### TypeScript/JavaScript + oxlint ]; }; };