feat: migrate yazi into base

This commit is contained in:
Ryan Yin
2023-12-22 16:43:37 +08:00
parent a1b5572eea
commit 217057612c
3 changed files with 11 additions and 9 deletions

View File

@@ -11,5 +11,6 @@
./helix.nix
./media.nix
./shell.nix
./yazi.nix
];
}

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;
};
}

View File

@@ -36,15 +36,6 @@
defaultProfiles = ["gpu-hq"];
scripts = [pkgs.mpvScripts.mpris];
};
# terminal file manager
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;
};
};
services = {