Files
2026-04-23 09:59:07 +08:00

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
];
}