Hello, World!

This commit is contained in:
Weckyy702
2026-01-10 17:32:29 +01:00
commit d8374cb12b
4 changed files with 135 additions and 0 deletions

15
dev-tools.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ...} : {
programs.neovim = {
enable = true;
defaultEditor = true;
};
programs.git = {
enable = true;
config = {
init = {
defaultBranch = "main";
};
};
};
}