infra/module/aspect/software/code/version-control/github.nix
2025-12-01 13:23:24 +07:00

18 lines
No EOL
302 B
Nix

{
den.aspects = {
version-control = {
homeManager =
{ pkgs, ... }:
{
programs = {
gh = {
enable = true;
extensions = [
pkgs.gh-copilot
];
};
};
};
};
};
}