diff options
| author | toufic ar <contact@toufy.me> | 2026-05-15 19:47:58 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-05-15 19:47:58 +0300 |
| commit | f4116061de06f032a2ee19f53ee3012737feff28 (patch) | |
| tree | 253b8cf488f7a6b03b1e261f7f2547d10adf88ff /common/git.nix | |
| parent | 24171d51da6531634d4275041b46b2105324fe7f (diff) | |
| download | servers-f4116061de06f032a2ee19f53ee3012737feff28.tar.gz servers-f4116061de06f032a2ee19f53ee3012737feff28.zip | |
make git common
Diffstat (limited to 'common/git.nix')
| -rw-r--r-- | common/git.nix | 11 |
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"; + }; + }; + }; +} |
