1
0
forked from extern/nix-config
donovanglover-nix-config/terminal/default.nix
Donovan Glover 968ac924c8
Add hexyl
2023-05-31 10:41:00 -04:00

58 lines
718 B
Nix

{ pkgs, ... }:
{
imports = [
./fish-starship
./git
./gpg
./ncmpcpp
./neovim
./joshuto
];
environment.systemPackages = with pkgs; [
wget
jq
exa
fd
fzf
gdu
fdupes
mediainfo
ponysay
lolcat
cmatrix
sox
httpie
p7zip
ripgrep
rsync
unar
genact
ffmpeg
killall
trashy
whois
dwt1-shell-color-scripts
dig
yt-dlp
neofetch
pywal
brightnessctl
zellij
librespeed-cli
wiki-tui
hexyl
];
home-manager.sharedModules = [{
programs.bat.enable = true;
}];
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = { tree_view = 1; };
};
}