Files
nix-config/dev-tools.nix
2026-01-10 17:32:29 +01:00

16 lines
203 B
Nix

{ config, pkgs, ...} : {
programs.neovim = {
enable = true;
defaultEditor = true;
};
programs.git = {
enable = true;
config = {
init = {
defaultBranch = "main";
};
};
};
}