Compare commits

..

No commits in common. "edb1be44319dab1bf96c078c3221ee0c8f90f70f" and "c8a14bf1298a6613fd3b1606c3d87469ec252019" have entirely different histories.

7 changed files with 6 additions and 3 deletions

View file

@ -173,6 +173,9 @@
ignoreDups = true; ignoreDups = true;
ignoreSpace = true; ignoreSpace = true;
}; };
shellAliases = {
gsa = "git-sync-all";
};
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = ["colored-man-pages" "lol" "rand-quote"]; plugins = ["colored-man-pages" "lol" "rand-quote"];

View file

@ -1,10 +1,10 @@
{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 ./git-sync-all.sh))
(pkgs.writeShellScriptBin "rsync-local-config" (pkgs.writeShellScriptBin "rsync-local-config"
(builtins.readFile ./shell/rsync-local-config.sh)) (builtins.readFile ./rsync-local-config.sh))
(pkgs.writeShellScriptBin "xdg-query-program" (pkgs.writeShellScriptBin "xdg-query-program"
(builtins.readFile ./shell/xdg-query-program.sh)) (builtins.readFile ./xdg-query-program.sh))
]; ];
} }