mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
37 lines
562 B
Nix
37 lines
562 B
Nix
{ config, lib, pkgs, pkgsCustom, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs;
|
|
[
|
|
coreutils
|
|
gnused
|
|
spoof-mac
|
|
colima
|
|
pinentry_mac
|
|
iterm2
|
|
(pkgs.callPackage ./spotify-mac.nix { })
|
|
] ++ [ discord pkgsCustom.vlc ] ++ [ 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
|
|
];
|
|
}
|