devcontainers/typical-devenv: init

This commit is contained in:
Gabriel Arazas 2025-04-17 20:47:03 +08:00
parent 68ab36de85
commit 60d5ab3758
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@
let inherit (pkgs) callPackage;
in {
creatives = callPackage ./creatives.nix { };
typicalDevenv = callPackage ./typical-devenv.nix { };
rustBackend = callPackage ./rust-backend.nix { };
jsBackend = callPackage ./js-backend.nix { };
ruby_3_2 = callPackage ./ruby-on-rails.nix { ruby = pkgs.ruby_3_2; };

View File

@ -0,0 +1,7 @@
{ dockerTools, neovim, nushell, foodogsquaredLib, }:
foodogsquaredLib.buildDockerImage rec {
name = "typical-devenv";
tag = name;
contents = foodogsquaredLib.stdenv;
}