Compare commits

...

2 commits

7 changed files with 3 additions and 6 deletions

View file

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