Files
dendritic/modules/home-manager/shell.nix
John Lancaster 6eecb1a9bd fix
2026-02-16 16:41:35 -06:00

28 lines
514 B
Nix

{ inputs, ... }:
{
flake.homeModules.shell = {pkgs, lib, ...}:
{
imports = with inputs.self.homeModules; [
# Shells
bash
zsh
# 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";
};
};
}