nnn configuration
This commit is contained in:
parent
268eb9181a
commit
b367fb8472
1 changed files with 22 additions and 1 deletions
23
home.nix
23
home.nix
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue