Files
dendritic/modules/home-manager/profiles/shell-tools.nix
2026-03-08 12:31:03 -05:00

24 lines
379 B
Nix

{ inputs, ... }:
{
flake.homeModules.shell-tools = { pkgs, ... }: {
imports = with inputs.self.homeModules; [
shell # Includes option to select between zsh and bash
# Tools
eza
files
];
home.packages = with pkgs; [
wget
curl
cacert
busybox
gnugrep
dig
btop
uv
xclip
];
};
}