summaryrefslogtreecommitdiff
path: root/common/git.nix
diff options
context:
space:
mode:
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";
+ };
+ };
+ };
+}