feat: add lf

This commit is contained in:
notohh 2023-02-01 15:48:46 -05:00
parent 5caaa1e678
commit 02dfcc61d4
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 19 additions and 1 deletions

View file

@ -1 +0,0 @@
#

View file

@ -11,6 +11,7 @@ imports = [
./dunst
./helix
./git
./lf
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;

View file

@ -0,0 +1,18 @@
{config, pkgs, ...}:
{
programs.lf = {
enable = true;
settings = {
shell = "nushell";
hidden = true;
icons = true;
drawbox = true;
ignorecase = true;
};
extraConfig = ''
'';
};
}