37 lines
459 B
Nix
37 lines
459 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [./git.nix ./starship.nix ./zellij.nix];
|
|
home.packages = with pkgs; [
|
|
bandwhich
|
|
bat
|
|
cargo-workspaces
|
|
colima
|
|
clipboard-jh
|
|
dogdns
|
|
erdtree
|
|
fd
|
|
gawk
|
|
git-credential-1password
|
|
gnutar
|
|
gping
|
|
imagemagick
|
|
internetarchive
|
|
jless
|
|
jq
|
|
just
|
|
kondo
|
|
litecli
|
|
neovim
|
|
poetry
|
|
racket
|
|
ripgrep
|
|
rsync
|
|
sqlite
|
|
yt-dlp
|
|
zstd
|
|
];
|
|
}
|