mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
31 lines
506 B
Nix
31 lines
506 B
Nix
{ config, lib, pkgs, pkgsCustom, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs;
|
|
[ coreutils gnused spoof-mac colima pinentry_mac iterm2 ]
|
|
++ [ discord pkgsCustom.vlc pkgsCustom.qbittorrent ]
|
|
++ [ docker docker-compose ] ++ [
|
|
zsh-powerlevel10k
|
|
comma
|
|
automake
|
|
autoconf
|
|
cmake
|
|
bash
|
|
rustup
|
|
curl
|
|
pv
|
|
wget
|
|
htop
|
|
bat
|
|
fd
|
|
ripgrep
|
|
jq
|
|
nmap
|
|
unzip
|
|
unp
|
|
unrar
|
|
rsync
|
|
openssh
|
|
tldr
|
|
];
|
|
}
|