chore: drop unused packages

This commit is contained in:
2025-08-04 19:59:56 +08:00
parent 433e26edaa
commit 8385671c4f
2 changed files with 0 additions and 38 deletions

View File

@@ -44,7 +44,6 @@ lib.my.makeHomeProgramConfig {
stylua stylua
lua-language-server lua-language-server
nodePackages.vscode-langservers-extracted
nodePackages.typescript-language-server nodePackages.typescript-language-server
vue-language-server vue-language-server
typescript typescript

View File

@@ -1,37 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "fluent-fcitx5";
version = "unstable-2024-03-10";
src = fetchFromGitHub {
owner = "Reverier-Xu";
repo = "Fluent-fcitx5";
rev = "e4745fd598ddfd4b26f693cfb951cd028575a1f0";
hash = "sha256-tVPp6kFgsWlSLcEUffOvXCWDEV0y7qcSqYKQkGO7lrM=";
};
phases = [
"unpackPhase"
"installPhase"
];
installPhase = ''
runHook preInstall
mkdir -p $out/share/fcitx5/themes
cp -r Fluent* $out/share/fcitx5/themes
runHook postInstall
'';
meta = with lib; {
description = "A Fluent-Design theme with blur effect and shadow. ";
homepage = "https://github.com/Reverier-Xu/Fluent-fcitx5";
platforms = platforms.all;
};
}