55 lines
660 B
Nix
55 lines
660 B
Nix
{ pkgs, inputs, ... }:
|
|
let
|
|
dr = import ../../../../modules/mizukios/features/packages/dr.nix { inherit pkgs; };
|
|
in
|
|
with pkgs;
|
|
[
|
|
# Language runtimes and package managers
|
|
nodejs
|
|
pnpm
|
|
yarn
|
|
bun
|
|
python3
|
|
rustup
|
|
go
|
|
|
|
# Editors and database tools
|
|
neovide
|
|
jetbrains.datagrip
|
|
jetbrains.idea
|
|
|
|
# CLI utilities
|
|
ripgrep
|
|
fd
|
|
bat
|
|
fzf
|
|
jq
|
|
eza
|
|
fastfetch
|
|
btop
|
|
|
|
# Source control
|
|
gh
|
|
lazygit
|
|
|
|
# Browsers
|
|
google-chrome
|
|
|
|
# Development applications
|
|
postman
|
|
scrcpy
|
|
|
|
# Virtualisation
|
|
utm
|
|
|
|
# Media
|
|
iina
|
|
|
|
# Gaming
|
|
prismlauncher
|
|
|
|
# Nix workflows
|
|
dr
|
|
|
|
inputs.muvel.packages.${pkgs.stdenv.hostPlatform.system}.muvel
|
|
]
|