nix-config/hosts/common/packages.nix
2023-04-05 11:46:03 -03:00

25 lines
389 B
Nix

{ specialArgs, 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;
};
}