feat: add the gh command

This commit is contained in:
Teesh 2026-01-29 22:19:34 +02:00
parent 2e59b74ba8
commit 79400f683d

14
modules/base/gh.nix Normal file
View file

@ -0,0 +1,14 @@
{ ... }:
{
flake.modules.nixos.base = { pkgs, ... }: {
environment.systemPackages = [ pkgs.gh ];
};
flake.modules.homeManager.base = {
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
};
}