Files
nix-darwin-config/modules/terminal/zsh/default.nix
2025-01-05 22:01:57 -05:00

45 lines
625 B
Nix

{ pkgs, username, ... }:
{
imports = [
./alacritty
# ./cava
./fonts
./foot
./nvim
./starship
./tmux
./yazi
./zsh
];
# ---- Home Configuration ----
home-manager.users.${username} = {
programs.git.enable = true;
};
# ---- System Configuration ----
programs = {
htop.enable = true;
mtr.enable = true;
};
environment.systemPackages = with pkgs; [
alacritty
brightnessctl
btop
gh
ghostty
kubectl
kubernetes-helm
lens
mods
nitch
pavucontrol
playerctl
ripgrep
todoist
unzip
vhs
zoxide
];
}