Files
dendritic/modules/home-manager/shell.nix
John Lancaster c66e86da88 added xclip
2026-03-07 13:46:39 -06:00

43 lines
734 B
Nix

{ inputs, ... }:
{
flake.homeModules.shell = {pkgs, lib, ...}:
{
imports = with inputs.self.homeModules; [
# Shells
# bash
zsh
# Tools
shell-tools
files
docker
];
programs.eza = {
enable = true;
package = pkgs.eza;
enableBashIntegration = true;
enableZshIntegration = true;
};
home.shell.enableShellIntegration = true;
home.shellAliases = {
ls = "${lib.getExe pkgs.eza} -lgos type --no-time --follow-symlinks";
};
};
flake.homeModules.shell-tools = {pkgs, ...}: {
home.packages = with pkgs; [
wget
curl
cacert
busybox
gnugrep
dig
btop
uv
xclip
];
};
}