Add shellAlias for git-sync-all -> gsa

This commit is contained in:
Evie Litherland-Smith 2024-07-30 06:34:11 +01:00
parent 24cd5ff271
commit 4f98a8cd93

View file

@ -1,5 +1,6 @@
{pkgs, ...}: {
home.packages = [
home = {
packages = [
(pkgs.writeShellScriptBin "git-sync-all"
(builtins.readFile ./shell/git-sync-all.sh))
(pkgs.writeShellScriptBin "rsync-local-config"
@ -7,4 +8,8 @@
(pkgs.writeShellScriptBin "xdg-query-program"
(builtins.readFile ./shell/xdg-query-program.sh))
];
shellAliases = {
gsa = "git-sync-all";
};
};
}