20 lines
415 B
Nix
20 lines
415 B
Nix
{
|
|
flakeSelf,
|
|
config,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
users.toast = {
|
|
programs.eza = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
git = true;
|
|
icons =
|
|
if config.system.nixos.release == "24.05"
|
|
then true
|
|
else "auto";
|
|
};
|
|
xdg.configFile."eza/theme.yml".source = "${flakeSelf.inputs.eza-themes}/themes/catppuccin.yml";
|
|
};
|
|
};
|
|
}
|