nix-config/hosts/common/packages.nix
2024-05-14 10:17:17 -03:00

26 lines
389 B
Nix

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