nix-config/hosts/common/packages.nix
2022-12-16 12:46:04 -03:00

30 lines
446 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;
};
console = {
font = "Hack Nerd Font"
packages = with pkgs; [
(nerdfonts.override { fonts = [ "Hack" ]; })
];
};
}