nix-config/hosts/common/packages.nix
2023-08-16 18:33:07 -03:00

26 lines
388 B
Nix

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