nix-config/hosts/common/packages.nix
2024-09-18 12:42:20 -03:00

23 lines
308 B
Nix

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