28 lines
514 B
Nix
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";
|
|
};
|
|
};
|
|
}
|