Files
nix-config/nixos-modules/devtools.nix
2026-01-10 19:53:34 +01:00

16 lines
203 B
Nix

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