Files
dendritic/modules/home-manager/shell.nix
John Lancaster 64ed7ca735 moved eza config
2026-02-16 13:58:18 -06:00

20 lines
341 B
Nix

{ inputs, ... }:
{
flake.homeModules.shell = {pkgs, ...}: {
programs.eza = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
extraOptions = [
"-lgos type --no-time"
];
};
imports = with inputs.self.homeModules; [
zsh
files
docker
];
};
}