diff options
| author | Rosa <rosaontheweb@proton.me> | 2025-12-22 18:05:22 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2025-12-22 18:05:22 -0500 |
| commit | 266a16508659a8a81a91cc3ec774be15f89d16b2 (patch) | |
| tree | 6777a042bf7c20f42ce900ba32b1c51a9b66296d /user/git.nix | |
| parent | d76111cd0de07c821844be4583ffb81eb2d59bf7 (diff) | |
setup niri
Diffstat (limited to 'user/git.nix')
| -rw-r--r-- | user/git.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/user/git.nix b/user/git.nix new file mode 100644 index 0000000..65b4b7c --- /dev/null +++ b/user/git.nix @@ -0,0 +1,13 @@ +{ config, ... }: +{ + programs.git = { + enable = true; + settings = { + init.defaultBranch = "main"; + user = { + email = "rosaontheweb@proton.me"; + name = "Rosa"; + }; + }; + }; +} |
