nix-config/hosts/common/packages.nix
2023-04-03 11:01:56 -03:00

28 lines
473 B
Nix

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