nixcfg/homeManagerModules/apps/yazi/default.nix
Aly Raffauf 45c5108565
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
home: add yazi
2024-07-24 16:54:34 -04:00

29 lines
518 B
Nix

{
config,
lib,
...
}: {
config = lib.mkIf config.ar.home.apps.yazi.enable {
programs.yazi = {
enable = true;
enableBashIntegration = true;
settings = {
log.enabled = false;
manager = {
show_hidden = false;
sort_by = "modified";
sort_dir_first = true;
sort_reverse = true;
sort_sensitive = true;
linemode = "size";
show_symlink = true;
};
preview.tab_size = 4;
};
};
};
}