Add shellAlias for git-sync-all -> gsa
This commit is contained in:
parent
24cd5ff271
commit
4f98a8cd93
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = [
|
home = {
|
||||||
|
packages = [
|
||||||
(pkgs.writeShellScriptBin "git-sync-all"
|
(pkgs.writeShellScriptBin "git-sync-all"
|
||||||
(builtins.readFile ./shell/git-sync-all.sh))
|
(builtins.readFile ./shell/git-sync-all.sh))
|
||||||
(pkgs.writeShellScriptBin "rsync-local-config"
|
(pkgs.writeShellScriptBin "rsync-local-config"
|
||||||
|
@ -7,4 +8,8 @@
|
||||||
(pkgs.writeShellScriptBin "xdg-query-program"
|
(pkgs.writeShellScriptBin "xdg-query-program"
|
||||||
(builtins.readFile ./shell/xdg-query-program.sh))
|
(builtins.readFile ./shell/xdg-query-program.sh))
|
||||||
];
|
];
|
||||||
|
shellAliases = {
|
||||||
|
gsa = "git-sync-all";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue