feat(shells): add opencode dev shell with mkOpencodeRules demo
Some checks failed
Update Nix Packages with nix-update / nix-update (push) Failing after 2m27s
Some checks failed
Update Nix Packages with nix-update / nix-update (push) Failing after 2m27s
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
# Development shells for various programming environments
|
||||
# Each shell can be accessed via: nix develop .#<shell-name>
|
||||
# Or used in home-manager/system configs
|
||||
{pkgs}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
}: {
|
||||
# Default shell for working on this repository
|
||||
default = pkgs.mkShell {
|
||||
name = "m3ta-nixpkgs-dev";
|
||||
@@ -27,6 +30,7 @@
|
||||
};
|
||||
|
||||
# Import all individual shell environments
|
||||
python = import ./python.nix {inherit pkgs;};
|
||||
devops = import ./devops.nix {inherit pkgs;};
|
||||
python = import ./python.nix {inherit pkgs inputs;};
|
||||
devops = import ./devops.nix {inherit pkgs inputs;};
|
||||
opencode = import ./opencode.nix {inherit pkgs inputs;};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user