From 2f6bed228d6d605c9f48497cc45443f9d3d3dd44 Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Sun, 9 Nov 2025 14:34:17 -0500 Subject: [PATCH] Added the Yazi TUI file browser --- modules/home/default.nix | 1 + modules/home/yazi.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/home/yazi.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 4e964e2..e70d1a7 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -18,6 +18,7 @@ ./vscode.nix ./wallpaper.nix ./xdg.nix + ./yazi.nix ./zsh.nix ]; } diff --git a/modules/home/yazi.nix b/modules/home/yazi.nix new file mode 100644 index 0000000..d77f44b --- /dev/null +++ b/modules/home/yazi.nix @@ -0,0 +1,10 @@ +{ + ... +}: +{ + programs.yazi = { + enable = true; + enableZshIntegration = true; + shellWrapperName = "y"; + }; +}