dotfiles/nixcfgs/modules/home/programs/lsd.nix
2025-10-24 22:41:27 +01:00

10 lines
206 B
Nix

{pkgs, ...}: {
programs.lsd = {
enable = true;
colors = "always";
icons = "always";
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
};
}