nix-config/hosts/common/packages.nix
2022-12-22 22:38:12 -03:00

23 lines
333 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
any-nix-shell
bind
btop
git
lazydocker
micro
neofetch
tmux
tree
wget
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}