17 lines
328 B
Nix
17 lines
328 B
Nix
{
|
|
flakeSelf,
|
|
config,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
users.toast = {
|
|
programs.eza = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
git = true;
|
|
icons = "auto";
|
|
};
|
|
xdg.configFile."eza/theme.yml".source = "${flakeSelf.inputs.eza-themes}/themes/catppuccin.yml";
|
|
};
|
|
};
|
|
}
|