nix-da/modules/programs/lazygit.nix
nydragon b6b1b3a1fe
Some checks failed
/ test (push) Has been cancelled
chore: allow lazygit to use some gpg features
2025-03-17 10:50:29 +01:00

11 lines
159 B
Nix

{
programs.lazygit = {
enable = true;
settings = {
"notARepository" = "skip";
git = {
overrideGpg = true;
};
};
};
}