nix-config/terminal/default.nix
Donovan Glover 3aa85c355b
Simplify terminal imports
Certain programs should always be available on the system, so having
separate modules goes against ensuring a certain state.
2023-05-25 10:21:39 -04:00

58 lines
713 B
Nix

{ pkgs, ... }:
{
imports = [
./fish
./git
./gpg
./ncmpcpp
./neovim
./ranger
./starship
];
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
];
home-manager.sharedModules = [{
programs.bat.enable = true;
}];
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = { tree_view = 1; };
};
}