nixos-config/user/lf/default.nix
2022-12-16 17:52:58 -03:00

19 lines
363 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;
}