From 5d825d97cef45abd4af8863a2e614586f7d19ce5 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Fri, 6 Oct 2023 16:26:45 +0100 Subject: [PATCH] feat: add git configs --- home/ash/desktop.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/home/ash/desktop.nix b/home/ash/desktop.nix index 08724b0..ca2d787 100644 --- a/home/ash/desktop.nix +++ b/home/ash/desktop.nix @@ -15,4 +15,20 @@ theme = "Catppuccin-Mocha"; font.name = "JetBrainsMono Nerd Font"; }; + + programs.git = { + enable = true; + userName = "Ashhhleyyy"; + userEmail = "ash@ashhhleyyy.dev"; + signing = { + key = "83B789081A0878FB"; + signByDefault = true; + }; + }; + + programs.gpg = { + enable = true; + mutableKeys = true; + mutableTrust = rue; + }; }