16 lines
217 B
Nix
16 lines
217 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
};
|
|
programs.delta = {
|
|
enable = true;
|
|
options = {
|
|
features = "decorations interactive";
|
|
navigate = true;
|
|
hyperlinks = true;
|
|
};
|
|
};
|
|
}
|