bump c10y

This commit is contained in:
Henry Hiles 2025-12-30 19:43:52 -05:00
commit 48acbc4b78
No known key found for this signature in database
3 changed files with 40 additions and 46 deletions

View file

@ -23,19 +23,13 @@
gpg.format = "ssh";
};
};
environment = {
systemPackages = [ pkgs.gh ];
shellAliases =
let
gitExe = lib.meta.getExe pkgs.git;
ghExe = lib.meta.getExe pkgs.gh;
in
{
clone = "${ghExe} repo clone";
create = "${ghExe} repo create";
environment.shellAliases =
let
gitExe = lib.meta.getExe pkgs.git;
in
{
push = "${gitExe} push";
commit = "${gitExe} commit -am";
};
};
push = "${gitExe} push";
commit = "${gitExe} commit -am";
};
}