24 lines
379 B
Nix
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
|
|
];
|
|
};
|
|
}
|