Here is my current nnn
configuration in home.nix
programs = {
nnn = {
package = unstable.nnn;
enable = true;
plugins.src = (pkgs.fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v5.0";
sha256 = "sha256-HShHSjqD0zeE1/St1Y2dUeHfac6HQnPFfjmFvSuEXUA=";
}) + "/plugins";
plugins.mappings = { j = "autojump"; p = "preview-tui"; };
};
};
I’d like to modify some of the plugins and then use them,is it possible to do it via home-manager?
For instance, I’d like to modify the LIST
variable in the fzcd
plugin here.