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