51 lines
594 B
Nix
51 lines
594 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
system,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./emacs.nix
|
|
./git.nix
|
|
./starship.nix
|
|
./zellij.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
bandwhich
|
|
bat
|
|
bottom
|
|
cargo-workspaces
|
|
colima
|
|
clipboard-jh
|
|
dogdns
|
|
erdtree
|
|
fd
|
|
ffmpeg_6
|
|
gawk
|
|
git-credential-1password
|
|
gnugrep
|
|
gnused
|
|
gnutar
|
|
gping
|
|
imagemagick
|
|
internetarchive
|
|
jless
|
|
jq
|
|
just
|
|
kondo
|
|
litecli
|
|
magic-wormhole-rs
|
|
ncdu
|
|
neovim
|
|
ov
|
|
pdm
|
|
poetry
|
|
racket
|
|
ripgrep
|
|
rsync
|
|
sqlite
|
|
yt-dlp
|
|
zstd
|
|
];
|
|
}
|