nnn configuration

This commit is contained in:
Markus Heurung 2024-06-05 15:31:16 +02:00
parent 268eb9181a
commit b367fb8472

View file

@ -352,7 +352,27 @@
}; };
nnn = { nnn = {
enable = true; enable = true;
extraPackages = with pkgs; [ ffmpegthumbnailer mediainfo sxiv ]; extraPackages = with pkgs; [
ffmpegthumbnailer
mediainfo
sxiv
];
package = pkgs.nnn.override ({
withNerdIcons = true;
});
plugins = {
mappings = {
c = "fzcd";
f = "finder";
v = "imgview";
};
src = (pkgs.fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v4.9";
sha256 = "sha256-Hpc8YaJeAzJoEi7aJ6DntH2VLkoR6ToP6tPYn3llR7k=";
}) + "/plugins";
};
}; };
mbsync = { mbsync = {
enable = true; enable = true;
@ -363,6 +383,7 @@
enableFishIntegration = true; enableFishIntegration = true;
}; };
swaylock.enable = true; swaylock.enable = true;
waybar = {
zoxide = { zoxide = {
enable = true; enable = true;
}; };