Common/eza: fix icons config for 24.05
This commit is contained in:
parent
b51bea1785
commit
cfa31cbe51
1 changed files with 9 additions and 2 deletions
|
|
@ -1,11 +1,18 @@
|
|||
{flakeSelf, ...}: {
|
||||
{
|
||||
flakeSelf,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home-manager = {
|
||||
users.toast = {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
git = true;
|
||||
icons = "auto";
|
||||
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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue