This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/user/lf/default.nix

19 lines
363 B
Nix
Raw Permalink Normal View History

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