refactor: move yazi/helix into server related apps

This commit is contained in:
Ryan Yin
2023-12-27 18:01:58 +08:00
parent 03a14c40fe
commit 8c71e7aade
4 changed files with 20 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
{pkgs-unstable, ...}: {
# terminal file manager
programs.yazi = {
enable = true;
package = pkgs-unstable.yazi;
enableBashIntegration = true;
# TODO: nushellIntegration is broken on release-23.11, wait for master's fix to be released
enableNushellIntegration = false;
};
}