feat: add lf
This commit is contained in:
parent
5caaa1e678
commit
02dfcc61d4
3 changed files with 19 additions and 1 deletions
|
@ -1 +0,0 @@
|
|||
#
|
|
@ -11,6 +11,7 @@ imports = [
|
|||
./dunst
|
||||
./helix
|
||||
./git
|
||||
./lf
|
||||
];
|
||||
systemd.user.startServices = "sd-switch";
|
||||
programs.home-manager.enable = true;
|
||||
|
|
18
modules/home/lf/default.nix
Normal file
18
modules/home/lf/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
programs.lf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
shell = "nushell";
|
||||
hidden = true;
|
||||
icons = true;
|
||||
drawbox = true;
|
||||
ignorecase = true;
|
||||
};
|
||||
extraConfig = ''
|
||||
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue