nixos-config/user/lf/default.nix

26 lines
373 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
inputs,
...
}:
{
2022-12-14 17:56:22 -03:00
programs.lf = {
enable = true;
keybindings = {
"n" = "updir";
"e" = "down";
"i" = "up";
"o" = "open";
};
settings = {
icons = true;
};
2022-12-16 17:52:58 -03:00
previewer.source = ./previewer;
2022-12-14 17:56:22 -03:00
};
2022-12-16 17:52:58 -03:00
xdg.configFile."lf/icons".source = ./icons;
xdg.configFile."lf/colors".source = ./colors;
2022-12-14 17:56:22 -03:00
}