32 lines
432 B
Nix
32 lines
432 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
tor-browser
|
|
htop
|
|
wget
|
|
ripgrep
|
|
bat
|
|
monolith
|
|
fd
|
|
freshfetch
|
|
neofetch
|
|
dfc
|
|
yt-dlp
|
|
(pkgs.callPackage ./custom/fortune-kind-custom.nix {})
|
|
fend
|
|
timg
|
|
graphviz
|
|
nix-output-monitor
|
|
npins
|
|
(pkgs.callPackage ./custom/uv.nix {})
|
|
gcc
|
|
exercism
|
|
pandoc
|
|
act
|
|
go
|
|
xsel
|
|
xclip
|
|
wl-clipboard
|
|
];
|
|
}
|