Kieran's opinionated (and probably slightly dumb) nix config

chore: remove non functinal git alias and set pull to rebase

Changed files
+1 -2
home-manager
+1 -2
home-manager/home.nix
···
aliases = {
c = "commit";
p = "push";
-
pl = "pull";
};
extraConfig = {
commit.gpgsign = true;
gpg.format = "ssh";
gpg.ssh.allowedSignersFile = "~/.ssh/allowedSigners";
user.signingKey = "~/.ssh/id_rsa.pub";
+
pull.rebase = true;
};
};
···
update = "sudo nixos-rebuild switch";
gc = "git commit";
gp = "git push";
-
gpl = "git pull";
};
history = {
size = 10000;