13 lines
217 B
Nix
13 lines
217 B
Nix
{
|
|
flake.modules.homeManager.base =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
git-exclude
|
|
git-extras
|
|
git-graph
|
|
git-trim
|
|
stable.git-instafix
|
|
];
|
|
};
|
|
}
|