nix-config/hosts/common/packages.nix
2023-02-10 23:00:16 +01:00

24 lines
337 B
Nix

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