diff options
Diffstat (limited to 'home/shell-utils')
-rw-r--r-- | home/shell-utils/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/shell-utils/default.nix b/home/shell-utils/default.nix new file mode 100644 index 0000000..bd07597 --- /dev/null +++ b/home/shell-utils/default.nix @@ -0,0 +1,17 @@ +# This module adds some common shell utilities to my home managed environment. +{pkgs, ...}: { + home.packages = with pkgs; + [ + human-sleep + ripgrep + jc + jq + ] + ++ lib.optionals (pkgs.stdenv.isLinux) [ + file # File is not included in NixOS, but *is* included in Darwin. + ] + ++ lib.optionals (pkgs.stdenv.isDarwin) [ + pbv + trash + ]; +} |