NixFiles/systems/macbookpro/packages.nix

26 lines
254 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Processes
killall
# Filesystems
dosfstools
# Archives
zip
unzip
unrar
p7zip
# Cli tools
wget
fzf
bat
# Git
git
];
}