nix-config/hosts/common/packages.nix
2022-12-07 00:59:57 -03:00

23 lines
312 B
Nix

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