nixos-config/user/lf/default.nix
2024-06-05 01:20:01 -03:00

26 lines
373 B
Nix

{
config,
pkgs,
lib,
inputs,
...
}:
{
programs.lf = {
enable = true;
keybindings = {
"n" = "updir";
"e" = "down";
"i" = "up";
"o" = "open";
};
settings = {
icons = true;
};
previewer.source = ./previewer;
};
xdg.configFile."lf/icons".source = ./icons;
xdg.configFile."lf/colors".source = ./colors;
}