.hive/modules/home/zsh/tools.nix

26 lines
359 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
bat
fzf
git
htop
killall
neofetch
nix-search-cli
nixpkgs-fmt
pass
poetry
python311Packages.radian
ranger
thefuck
unzip
vim
w3m
wget
youtube-dl
];
nixpkgs.config.permittedInsecurePackages = [
"python3.11-youtube-dl-2021.12.17"
];
}