nixos-config/user/lf.nix
2022-12-14 17:56:22 -03:00

17 lines
285 B
Nix

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