chore: clean unnecessary libs

This commit is contained in:
Rasyidan Akbar F. 2025-12-30 13:44:03 +07:00
commit 63d0716aaa
2 changed files with 3 additions and 6 deletions

View file

@ -16,7 +16,7 @@ in {
}; };
brews = mkOption { brews = mkOption {
type = types.listOf types.str; type = types.listOf types.str;
default = [ "curl" "yt-dlp" "ruff" "libmagic" "infisical" "imagemagick" ]; default = [ "curl" "yt-dlp" "infisical" ];
description = "Homebrew formulae to install."; description = "Homebrew formulae to install.";
}; };
casks = mkOption { casks = mkOption {

View file

@ -40,15 +40,12 @@
rsydn.devTools = { rsydn.devTools = {
enable = lib.mkDefault true; enable = lib.mkDefault true;
packages = with pkgs; [ packages = with pkgs; [
ast-grep
cloudflared cloudflared
ffmpeg
fzf fzf
htop htop
jetbrains-mono jetbrains-mono
jq jq
jujutsu jujutsu
lazydocker
lazygit lazygit
nil nil
nixd nixd
@ -69,8 +66,8 @@
cargo.enable = false; cargo.enable = false;
go.enable = false; go.enable = false;
bun.enable = false; bun.enable = false;
# Keep uv for MCP server and node for npx/tooling uv.enable = false;
uv.enable = true; # Keep node for npx/tooling
node.enable = true; node.enable = true;
}; };
}; };