Skip to content

Instantly share code, notes, and snippets.

@isaac-ped
Last active February 25, 2025 20:15
Show Gist options
  • Save isaac-ped/e11019a62f9bf93a188cbb7df790a92d to your computer and use it in GitHub Desktop.
Save isaac-ped/e11019a62f9bf93a188cbb7df790a92d to your computer and use it in GitHub Desktop.
Nix file defining additional packages to import to darwin-configuration.nix
{ pkgs, ... } :
{
environment.systemPackages = [
pkgs.jq # Query json output from the CLI
pkgs.tree # Prettier directory output listings
pkgs.rename # Mass-rename files
pkgs.k8s # K9s is a super useful CLI utility for interacting with kubernetes
pkgs.gh # The github command-line tool
pkgs.unixtools.watch # The 'watch' command
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment