We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 061199b commit 7576bbcCopy full SHA for 7576bbc
docker/opencode/devenv.nix
@@ -1,4 +1,6 @@
1
-{ pkgs, ... }: {
+{ inputs, pkgs, ... }: let
2
+ pkgs-unstable = import inputs.nixpkgs-unstable { system = pkgs.stdenv.system; };
3
+in {
4
languages = {
5
rust.enable = true;
6
python.enable = true;
@@ -12,7 +14,7 @@
12
14
};
13
15
16
packages = with pkgs; [
- opencode
17
+ pkgs-unstable.opencode
18
ripgrep
19
fd
20
curl
docker/opencode/devenv.yaml
@@ -1,4 +1,8 @@
inputs:
+ nixpkgs:
+ url: github:cachix/devenv-nixpkgs/rolling
+ nixpkgs-unstable:
+ url: github:NixOS/nixpkgs/nixpkgs-unstable
mk-shell-bin:
7
url: github:rrbutani/nix-mk-shell-bin
8
nix2container:
0 commit comments