nix-config/hosts/common/packages.nix
2022-12-04 22:39:52 -03:00

24 lines
287 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;
};
}