nix-config/hosts/common/packages.nix
2024-07-15 12:01:40 -03:00

23 lines
307 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
agenix
bind
btop
git
helix
neofetch
sysz
tmux
tree
wget
];
programs = {
fish.enable = true;
command-not-found.enable = false;
};
}