nix-config/hosts/common/packages.nix
2024-12-03 15:13:26 -03:00

22 lines
261 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
agenix
bind
btop
fastfetch
git
helix
killall
sysz
tmux
tree
wget
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}