diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/default.nix | 1 | ||||
-rw-r--r-- | home/shell-utils/default.nix | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/home/default.nix b/home/default.nix index 841f563..fde81b7 100644 --- a/home/default.nix +++ b/home/default.nix @@ -21,6 +21,7 @@ ./zsh ./git ./networking-utils + ./shell-utils ] ++ builtins.attrValues flakeOutputs.homeModules; 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 + ]; +} |