nixos/home/nnn.nix
Evie Litherland-Smith 91166300c0 Actually import nnn expression
Update hyprland binds to spawn nnn (and ncspot, using tmux as well)

Add more nnn bookmarks
2023-10-25 07:49:13 +01:00

21 lines
341 B
Nix

{ config, lib, pkgs, nnn, ... }:
{
programs.nnn = {
enable = true;
bookmarks = {
d = "~/Documents";
D = "~/Downloads";
p = "~/Pictures";
v = "~/Videos";
m = "~/Music";
o = "~/Org";
P = "~/Projects";
};
plugins = {
src = "${nnn}/plugins";
mappings = { };
};
};
}