summaryrefslogtreecommitdiff
path: root/common/git.nix
diff options
context:
space:
mode:
authortoufic ar <contact@toufy.me>2026-05-15 19:47:58 +0300
committertoufic ar <contact@toufy.me>2026-05-15 19:47:58 +0300
commitf4116061de06f032a2ee19f53ee3012737feff28 (patch)
tree253b8cf488f7a6b03b1e261f7f2547d10adf88ff /common/git.nix
parent24171d51da6531634d4275041b46b2105324fe7f (diff)
downloadservers-f4116061de06f032a2ee19f53ee3012737feff28.tar.gz
servers-f4116061de06f032a2ee19f53ee3012737feff28.zip
make git common
Diffstat (limited to 'common/git.nix')
-rw-r--r--common/git.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/git.nix b/common/git.nix
new file mode 100644
index 0000000..1522a78
--- /dev/null
+++ b/common/git.nix
@@ -0,0 +1,11 @@
+{
+ programs.git = {
+ enable = true;
+ lfs.enable = true;
+ config = {
+ init = {
+ defaultBranch = "main";
+ };
+ };
+ };
+}