mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-14 08:32:39 +02:00
feat: migrate yazi into base
This commit is contained in:
@@ -11,5 +11,6 @@
|
|||||||
./helix.nix
|
./helix.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
./shell.nix
|
./shell.nix
|
||||||
|
./yazi.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -36,15 +36,6 @@
|
|||||||
defaultProfiles = ["gpu-hq"];
|
defaultProfiles = ["gpu-hq"];
|
||||||
scripts = [pkgs.mpvScripts.mpris];
|
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 = {
|
services = {
|
||||||
|
|||||||
Reference in New Issue
Block a user