15 lines
207 B
Nix
15 lines
207 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
gui = {
|
|
nerdFontsVersion = "3";
|
|
theme = {
|
|
lightTheme = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|