From 5bb901ca2c4c0e72e019aede5c45a8fa681df3e5 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 28 Apr 2022 00:26:31 -0400 Subject: [PATCH] tweak(bud): buildthis -> rb --- shell/bud/default.nix | 6 +++--- shell/bud/{buildthis.bash => rb.bash} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename shell/bud/{buildthis.bash => rb.bash} (100%) diff --git a/shell/bud/default.nix b/shell/bud/default.nix index bcc7dfe..7405281 100644 --- a/shell/bud/default.nix +++ b/shell/bud/default.nix @@ -1,10 +1,10 @@ { pkgs, lib, budUtils, ... }: { bud.cmds = with pkgs; { - buildthis = { + rb = { writer = budUtils.writeBashWithPaths [ nixUnstable nixos-rebuild git coreutils mercurial ]; - synopsis = "buildthis (switch|boot|test)"; + synopsis = "rb (switch|boot|test)"; help = "Shortcut for nixos-rebuild using the current hostname"; - script = ./buildthis.bash; + script = ./rb.bash; }; install-doom = { diff --git a/shell/bud/buildthis.bash b/shell/bud/rb.bash similarity index 100% rename from shell/bud/buildthis.bash rename to shell/bud/rb.bash