nix-stuff/roles/common/programs/eza.nix
2024-10-24 13:35:30 +02:00

8 lines
138 B
Nix

{pkgs, ...}: {
home-manager = {
users.toast.programs.eza = {
enable = true;
enableBashIntegration = true;
};
};
}