9 lines
204 B
Nix
9 lines
204 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
config = lib.mkIf config.nomarchy.apps.lazygit.enable {
|
|
home.packages = [ pkgs.lazygit ];
|
|
xdg.configFile."lazygit/config.yml".source = ./config/config.yml;
|
|
};
|
|
}
|