nix-config/hosts/common/packages.nix
2023-04-06 09:45:01 -03:00

25 lines
376 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
bind
broot
btop
comma
git
micro
neofetch
# nix-your-shell # Currently only available in unstable
sysz
tmux
tree
wget
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}