aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/git.nix
diff options
context:
space:
mode:
authorSimen A. W. Olsen <hello@simenandre.no>2026-03-21 18:43:01 +0100
committerSimen A. W. Olsen <hello@simenandre.no>2026-03-21 18:43:01 +0100
commite08f800b6dc1bc6a6a6127c12b7df72bd219d50b (patch)
treed8946586bdda098983322316d02421c57ffb885d /modules/home/git.nix
parent1fd92fcaf3aadea1e9509f859340f57100218c41 (diff)
downloaddotfiles-e08f800b6dc1bc6a6a6127c12b7df72bd219d50b.tar.gz
dotfiles-e08f800b6dc1bc6a6a6127c12b7df72bd219d50b.zip
use nix
Diffstat (limited to 'modules/home/git.nix')
-rw-r--r--modules/home/git.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/home/git.nix b/modules/home/git.nix
index e79a760..3865e25 100644
--- a/modules/home/git.nix
+++ b/modules/home/git.nix
@@ -3,15 +3,17 @@
{
programs.git = {
enable = true;
- userName = "Simen A. W. Olsen";
- userEmail = "hello@simenandre.no";
signing = {
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCyUn5BfmAnd/6xi0X1mYF/+jPOmCS0bpNUePF55gCY";
signByDefault = true;
};
- extraConfig = {
+ settings = {
+ user = {
+ name = "Simen A. W. Olsen";
+ email = "hello@simenandre.no";
+ };
apply.whitespace = "fix";
core = {
trustctime = false;