nix-config/modules/lazygit/default.nix
2025-09-18 13:11:54 +02:00

15 lines
207 B
Nix

{ config, ... }:
{
programs.lazygit = {
enable = true;
settings = {
gui = {
nerdFontsVersion = "3";
theme = {
lightTheme = false;
};
};
};
};
}