Last active
February 25, 2025 20:15
-
-
Save isaac-ped/e11019a62f9bf93a188cbb7df790a92d to your computer and use it in GitHub Desktop.
Nix file defining additional packages to import to darwin-configuration.nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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