nix-config/hosts/common/packages.nix
2023-04-22 18:32:36 -03:00

24 lines
366 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
bind
btop
comma
git
micro
neofetch
# nix-your-shell # Currently only available in unstable
sysz
tmux
tree
wget
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}