From 1a6f024d99bf436a01eed7b6731131316d5200be Mon Sep 17 00:00:00 2001 From: Parthiv Seetharaman Date: Wed, 29 Dec 2021 15:41:58 -0800 Subject: [PATCH] bud: move to shell and use git clone for get --- flake.nix | 9 ++++++--- {bud => shell/bud}/buildthis.bash | 0 {bud => shell/bud}/default.nix | 0 {bud => shell/bud}/install-doom.bash | 0 4 files changed, 6 insertions(+), 3 deletions(-) rename {bud => shell/bud}/buildthis.bash (100%) rename {bud => shell/bud}/default.nix (100%) rename {bud => shell/bud}/install-doom.bash (100%) diff --git a/flake.nix b/flake.nix index fd39cab..1911f6f 100644 --- a/flake.nix +++ b/flake.nix @@ -278,7 +278,10 @@ templates.bud.path = ./.; templates.bud.description = "bud template"; - } // { - budModules = { devos = import ./bud; }; - }; + } + // + { + budModules = { devos = import ./shell/bud; }; + } + ; } diff --git a/bud/buildthis.bash b/shell/bud/buildthis.bash similarity index 100% rename from bud/buildthis.bash rename to shell/bud/buildthis.bash diff --git a/bud/default.nix b/shell/bud/default.nix similarity index 100% rename from bud/default.nix rename to shell/bud/default.nix diff --git a/bud/install-doom.bash b/shell/bud/install-doom.bash similarity index 100% rename from bud/install-doom.bash rename to shell/bud/install-doom.bash