18 lines
277 B
Nix
18 lines
277 B
Nix
|
{ config, lib, pkgs, nnn, ... }:
|
||
|
|
||
|
{
|
||
|
programs.nnn = {
|
||
|
enable = true;
|
||
|
bookmarks = {
|
||
|
d = "~/Documents";
|
||
|
D = "~/Downloads";
|
||
|
p = "~/Pictures";
|
||
|
v = "~/Videos";
|
||
|
};
|
||
|
plugins = {
|
||
|
src = "${nnn}/plugins";
|
||
|
mappings = { };
|
||
|
};
|
||
|
};
|
||
|
}
|