1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Add git-absorb

This commit is contained in:
RGBCube 2024-02-11 13:23:28 +03:00
parent 8dfcd01ce5
commit d278e3223b
No known key found for this signature in database
2 changed files with 11 additions and 4 deletions

View file

@ -1,12 +1,15 @@
{ lib, ulib, pkgs, ... }: with ulib;
{ lib, ulib, pkgs, ... }: with ulib; merge
homeConfiguration {
(homeConfiguration {
programs.nushell.shellAliases = {
g = "git";
ga = "git add";
gaa = "git add ./";
gab = "git absorb";
gabr = "git absorb --and-rebase";
gb = "git branch";
gbv = "git branch --verbose";
@ -88,4 +91,8 @@ homeConfiguration {
user.signingKey = "~/.ssh/id";
};
};
}
})
(systemPackages (with pkgs; [
git-absorb
]))

View file

@ -41,6 +41,6 @@
};
})
(homePackages (with pkgs; [
(systemPackages (with pkgs; [
fish # For completions.
]))