diff --git a/scripts/default.nix b/scripts/default.nix index 20aedf5..2a53469 100644 --- a/scripts/default.nix +++ b/scripts/default.nix @@ -1,10 +1,10 @@ {pkgs, ...}: { home.packages = [ (pkgs.writeShellScriptBin "git-sync-all" - (builtins.readFile ./git-sync-all.sh)) + (builtins.readFile ./shell/git-sync-all.sh)) (pkgs.writeShellScriptBin "rsync-local-config" - (builtins.readFile ./rsync-local-config.sh)) + (builtins.readFile ./shell/rsync-local-config.sh)) (pkgs.writeShellScriptBin "xdg-query-program" - (builtins.readFile ./xdg-query-program.sh)) + (builtins.readFile ./shell/xdg-query-program.sh)) ]; } diff --git a/scripts/sync-all.lua b/scripts/lua/sync-all.lua similarity index 100% rename from scripts/sync-all.lua rename to scripts/lua/sync-all.lua diff --git a/scripts/sync-all.py b/scripts/python/sync-all.py similarity index 100% rename from scripts/sync-all.py rename to scripts/python/sync-all.py diff --git a/scripts/git-sync-all.sh b/scripts/shell/git-sync-all.sh similarity index 100% rename from scripts/git-sync-all.sh rename to scripts/shell/git-sync-all.sh diff --git a/scripts/rsync-local-config.sh b/scripts/shell/rsync-local-config.sh similarity index 100% rename from scripts/rsync-local-config.sh rename to scripts/shell/rsync-local-config.sh diff --git a/scripts/xdg-query-program.sh b/scripts/shell/xdg-query-program.sh similarity index 100% rename from scripts/xdg-query-program.sh rename to scripts/shell/xdg-query-program.sh