nix-config/hosts/common/packages.nix
2023-03-08 12:26:25 -03:00

27 lines
371 B
Nix

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