Skip to content

Instantly share code, notes, and snippets.

@isaac-ped
Last active August 26, 2025 19:16
Show Gist options
  • Select an option

  • Save isaac-ped/e11019a62f9bf93a188cbb7df790a92d to your computer and use it in GitHub Desktop.

Select an option

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.k9s # 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