oizys/modules/development/git.nix

18 lines
224 B
Nix
Raw Normal View History

2024-12-06 10:42:23 -06:00
{ pkgs, flake, ... }:
2024-05-06 14:32:00 -05:00
{
2024-12-06 10:42:23 -06:00
environment.systemPackages =
[
# not technically git ¯\_(ツ)_/¯
(flake.pkg "jj")
2024-01-23 11:51:13 -06:00
2024-12-06 10:42:23 -06:00
]
++ (with pkgs; [
git
git-lfs
gh
lazygit
delta
]);
2024-01-23 11:51:13 -06:00
}