nixos-config/modules/shell/lf.nix
christiangabrielarazas@gmail.com 19674fe7d2 Update the modules
2020-08-06 23:35:49 +08:00

25 lines
418 B
Nix

# modules/shell/git.nix
# A file manager for hipsters.
{ config, options, lib, pkgs, ... }:
with lib;
{
options.modules.shell.lf = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf config.modules.shell.lf.enable {
home.packages = with pkgs; [
lf
];
xdg.configFile."lf" = {
source = ../../config/lf;
recursive = true;
};
};
}