Files
dendritic/modules/home-manager/shell.nix
John Lancaster 5e31cd8e33 fix
2026-02-16 16:38:13 -06:00

28 lines
496 B
Nix

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