diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-01-10 17:59:55 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-01-10 17:59:55 -0500 |
| commit | 5570be9c9c64e0ba2474d73c2b6b23508b916fd6 (patch) | |
| tree | 53e2f7939b668a50d8f51f857a8659989de85c2b /user/home/git.nix | |
| parent | 488bd4b5c08d6fe9c44b0fa5cd3750265c2be482 (diff) | |
custom function for system creation
Diffstat (limited to 'user/home/git.nix')
| -rw-r--r-- | user/home/git.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/user/home/git.nix b/user/home/git.nix new file mode 100644 index 0000000..65b4b7c --- /dev/null +++ b/user/home/git.nix @@ -0,0 +1,13 @@ +{ config, ... }: +{ + programs.git = { + enable = true; + settings = { + init.defaultBranch = "main"; + user = { + email = "rosaontheweb@proton.me"; + name = "Rosa"; + }; + }; + }; +} |
