add lf program

This commit is contained in:
Ivan Dimitrov 2023-08-20 22:24:15 +03:00
parent ec0686d697
commit ce73efeb28
3 changed files with 12 additions and 1 deletions

View File

@ -20,6 +20,7 @@
gopass
gopass-jsonapi
pavucontrol
bat
# programming
nixfmt
sqlite

View File

@ -1,5 +1,5 @@
{ pkgs, ... }: {
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ];
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ];
programs = {
thunderbird = {

View File

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs = {
lf = {
enable = true;
keybindings = {
D = "delete";
};
};
};
}