Merge pull request #409 from Pacman99/bud-get-git

bud: move to shell and use git clone for get
This commit is contained in:
Parthiv Seetharaman 2021-12-29 16:45:42 -08:00 committed by GitHub
commit 267e135c4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View file

@ -1 +0,0 @@
nix flake new -t "github:divnix/devos/main" "${2:-devos}"

View file

@ -141,7 +141,7 @@
}
//
{
budModules = { devos = import ./bud; };
budModules = { devos = import ./shell/bud; };
}
;
}

1
shell/bud/get.bash Normal file
View file

@ -0,0 +1 @@
git clone https://github.com/divnix/devos.git "${2:-devos}"