configuration.nix/modules/home/programs/lf/default.nix

13 lines
190 B
Nix
Raw Normal View History

2023-11-18 11:39:46 +01:00
{
programs.lf = {
enable = true;
extraConfig = builtins.readFile ./lfrc;
keybindings = {
D = "trash";
T = "touch";
M = "mkdir";
R = "mv";
2023-08-20 21:24:15 +02:00
};
};
}