mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -06:00
17 lines
224 B
Nix
17 lines
224 B
Nix
{ pkgs, flake, ... }:
|
|
{
|
|
environment.systemPackages =
|
|
[
|
|
# not technically git ¯\_(ツ)_/¯
|
|
(flake.pkg "jj")
|
|
|
|
]
|
|
++ (with pkgs; [
|
|
git
|
|
git-lfs
|
|
|
|
gh
|
|
lazygit
|
|
delta
|
|
]);
|
|
}
|