mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 11:02:19 +00:00
12 lines
257 B
Nix
12 lines
257 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
xdg.configFile."lazygit/config.yml".source = ../config/lazygit/config.yml;
|
|
|
|
home.file = lib.mkIf pkgs.stdenv.isDarwin {
|
|
"Library/Application Support/lazygit/config.yml".source =
|
|
../config/lazygit/config.yml;
|
|
};
|
|
}
|