20 lines
187 B
Nix
20 lines
187 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# cli
|
|
bat
|
|
fzf
|
|
git
|
|
jq
|
|
ncdu
|
|
fastfetch
|
|
p7zip
|
|
rar
|
|
unzip
|
|
zoxide
|
|
# python
|
|
ruff
|
|
uv
|
|
];
|
|
}
|