nix-config/hosts/common/packages.nix
2023-03-09 10:35:17 -03:00

30 lines
442 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
sysz
tmux
tree
wget
# Package overrides
(nnn.override {
withNerdIcons = true;
})
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}