23 lines
378 B
Nix
23 lines
378 B
Nix
{ lib, config, pkgs, ...}:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
cmus # music player
|
|
ncpamixer # audio mixer
|
|
yt-dlp # youtube downloader
|
|
tmux # (t)erminal (mu)ltiple(x)er
|
|
ledger # accounting
|
|
neomutt # mail
|
|
curl
|
|
tree
|
|
dig
|
|
python3 # nice interactive calculator and shell
|
|
bluetuith
|
|
sshfs
|
|
rsync
|
|
msmtp
|
|
ytfzf
|
|
peaclock
|
|
];
|
|
}
|