25 lines
451 B
Nix
25 lines
451 B
Nix
{...}: {
|
|
programs = {
|
|
zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
options = [
|
|
"--cmd cd"
|
|
];
|
|
};
|
|
|
|
hyfetch = {
|
|
enable = true;
|
|
settings = {
|
|
preset = "genderfae";
|
|
mode = "rgb";
|
|
backend = "fastfetch";
|
|
color_align = {
|
|
mode = "vertical";
|
|
};
|
|
auto_detect_light_dark = true;
|
|
pride_month_disable = false;
|
|
};
|
|
};
|
|
};
|
|
}
|