diff --git a/modules/home/README.md b/modules/home/README.md deleted file mode 100644 index 792d600..0000000 --- a/modules/home/README.md +++ /dev/null @@ -1 +0,0 @@ -# diff --git a/modules/home/home.nix b/modules/home/home.nix index a4772e9..37b20cf 100755 --- a/modules/home/home.nix +++ b/modules/home/home.nix @@ -11,6 +11,7 @@ imports = [ ./dunst ./helix ./git + ./lf ]; systemd.user.startServices = "sd-switch"; programs.home-manager.enable = true; diff --git a/modules/home/lf/default.nix b/modules/home/lf/default.nix new file mode 100644 index 0000000..120b32a --- /dev/null +++ b/modules/home/lf/default.nix @@ -0,0 +1,18 @@ +{config, pkgs, ...}: + +{ + programs.lf = { + enable = true; + settings = { + shell = "nushell"; + hidden = true; + icons = true; + drawbox = true; + ignorecase = true; + }; + extraConfig = '' + + ''; + }; + +}