From abaaab3f00157d1ea5769b187478aa90f2d71820 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Fri, 12 Nov 2021 00:52:20 +0000 Subject: [PATCH] Improve name of update scripts --- scripts/{home-update.sh => hmupdate} | 0 scripts/{system-update.sh => supdate} | 0 scripts/{update.sh => update} | 0 user/daniel/home.nix | 12 ++++++------ 4 files changed, 6 insertions(+), 6 deletions(-) rename scripts/{home-update.sh => hmupdate} (100%) rename scripts/{system-update.sh => supdate} (100%) rename scripts/{update.sh => update} (100%) diff --git a/scripts/home-update.sh b/scripts/hmupdate similarity index 100% rename from scripts/home-update.sh rename to scripts/hmupdate diff --git a/scripts/system-update.sh b/scripts/supdate similarity index 100% rename from scripts/system-update.sh rename to scripts/supdate diff --git a/scripts/update.sh b/scripts/update similarity index 100% rename from scripts/update.sh rename to scripts/update diff --git a/user/daniel/home.nix b/user/daniel/home.nix index 478b40b..5d03f58 100644 --- a/user/daniel/home.nix +++ b/user/daniel/home.nix @@ -23,18 +23,18 @@ file = { ".icons/default".source = "${pkgs.capitaine-cursors}/share/icons/capitaine-cursors"; - "bin/system-update.sh" = { - source = ../../scripts/system-update.sh; + "bin/supdate" = { + source = ../../scripts/supdate; executable = true; }; - "bin/home-update.sh" = { - source = ../../scripts/home-update.sh; + "bin/hmupdate" = { + source = ../../scripts/hmupdate; executable = true; }; - "bin/update.sh" = { - source = ../../scripts/update.sh; + "bin/update" = { + source = ../../scripts/update; executable = true; }; };