10 lines
221 B
Nix
10 lines
221 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
programs.git.enable = true;
|
|
home.file =
|
|
(lib.origami404.standaloneToHome ".gitconfig") // (lib.origami404.standaloneToHome ".gitignore");
|
|
home.packages = with pkgs; [
|
|
git-absorb
|
|
];
|
|
}
|