25 lines
442 B
Nix
25 lines
442 B
Nix
# ABOUTME: Git and GitHub CLI configuration
|
|
# ABOUTME: Sets up git with user info and gh CLI integration
|
|
|
|
{ config, pkgs, ... }:
|
|
let
|
|
cfg = import ./config.nix;
|
|
in
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user.name = cfg.user.fullName;
|
|
user.email = cfg.user.email;
|
|
credential.helper = "store";
|
|
};
|
|
};
|
|
|
|
programs.gh = {
|
|
enable = true;
|
|
gitCredentialHelper = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|