17 lines
601 B
Nix
17 lines
601 B
Nix
|
|
# profiles/sets/coding/core/default.nix — Core coding tools (always loaded with coding set).
|
||
|
|
#
|
||
|
|
# Provides git (package + difftastic), direnv, and essential CLI dev tools.
|
||
|
|
# Git USER SETTINGS (name, email, signing) are managed by the identity module,
|
||
|
|
# NOT here — this module only handles git tooling.
|
||
|
|
#
|
||
|
|
# Note: git.nix is copied from nixos-config/home/coding/git/git.nix
|
||
|
|
# It handles git.enable, difftastic, jujutsu, etc. but identity-specific
|
||
|
|
# settings (user.name, user.email) should be set by the identity module.
|
||
|
|
{...}: {
|
||
|
|
imports = [
|
||
|
|
./git.nix
|
||
|
|
./direnv.nix
|
||
|
|
./packages.nix
|
||
|
|
];
|
||
|
|
}
|