🔧 Require discord for Zed rich presence and add oxlint

This commit is contained in:
Jo 2025-12-16 01:43:26 +01:00
parent 4b5b7e41f4
commit 5da4af521e

View file

@ -98,7 +98,7 @@ in
html = true; html = true;
svelte = true; svelte = true;
scss = true; scss = true;
biome = true; # Formatting and utility tool, like ESlint, prettier, etc... oxc = true;
# Languages # Languages
nix = true; nix = true;
@ -117,8 +117,7 @@ in
catppuccin-icons = mkIf config.catppuccin.enable true; catppuccin-icons = mkIf config.catppuccin.enable true;
# Other # Other
discord-presence = true; discord-presence = mkIf config.programs.nixcord.enable true;
git-firefly = true;
wakatime = true; wakatime = true;
}; };
}; };
@ -145,6 +144,9 @@ in
php php
phpPackages.composer phpPackages.composer
pretty-php pretty-php
### TypeScript/JavaScript
oxlint
]; ];
}; };
}; };