summaryrefslogtreecommitdiff
path: root/kj-laptop01
diff options
context:
space:
mode:
Diffstat (limited to 'kj-laptop01')
-rw-r--r--kj-laptop01/home.nix18
1 files changed, 16 insertions, 2 deletions
diff --git a/kj-laptop01/home.nix b/kj-laptop01/home.nix
index 78a6667..4d50f0a 100644
--- a/kj-laptop01/home.nix
+++ b/kj-laptop01/home.nix
@@ -13,9 +13,9 @@
# Install packages
home.packages = with pkgs; [
htop
- git
zellij
- tmu
+ tmux
+ git-absorb
];
# Configure sops for home-manager
@@ -38,6 +38,20 @@
defaultEditor = true;
};
+ # Git configuration
+ programs.git = {
+ enable = true;
+ userName = "KJ Tsanaktsidis";
+ userEmail = "kj@kjtsanaktsidis.id.au";
+ signing = {
+ key = "7F21FB211E24B02A5DEF86E227CD40EB9B81C726";
+ signByDefault = true;
+ };
+ extraConfig = {
+ pull.rebase = true;
+ };
+ };
+
# SSH public key (private key is managed by sops)
home.file.".ssh/id_ed25519.pub" = {
text = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMtGcEXu5S/0zsF6Suxc65DmGFGt1JWRnqadoVhErOed kjtsanaktsidis@KJMacbookGroq.local";