mirror of
https://github.com/RGBCube/ncc
synced 2025-07-31 20:17:45 +00:00
Add git-absorb
This commit is contained in:
parent
8dfcd01ce5
commit
d278e3223b
2 changed files with 11 additions and 4 deletions
|
@ -1,12 +1,15 @@
|
||||||
{ lib, ulib, pkgs, ... }: with ulib;
|
{ lib, ulib, pkgs, ... }: with ulib; merge
|
||||||
|
|
||||||
homeConfiguration {
|
(homeConfiguration {
|
||||||
programs.nushell.shellAliases = {
|
programs.nushell.shellAliases = {
|
||||||
g = "git";
|
g = "git";
|
||||||
|
|
||||||
ga = "git add";
|
ga = "git add";
|
||||||
gaa = "git add ./";
|
gaa = "git add ./";
|
||||||
|
|
||||||
|
gab = "git absorb";
|
||||||
|
gabr = "git absorb --and-rebase";
|
||||||
|
|
||||||
gb = "git branch";
|
gb = "git branch";
|
||||||
gbv = "git branch --verbose";
|
gbv = "git branch --verbose";
|
||||||
|
|
||||||
|
@ -88,4 +91,8 @@ homeConfiguration {
|
||||||
user.signingKey = "~/.ssh/id";
|
user.signingKey = "~/.ssh/id";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
||||||
|
(systemPackages (with pkgs; [
|
||||||
|
git-absorb
|
||||||
|
]))
|
||||||
|
|
|
@ -41,6 +41,6 @@
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
(homePackages (with pkgs; [
|
(systemPackages (with pkgs; [
|
||||||
fish # For completions.
|
fish # For completions.
|
||||||
]))
|
]))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue