Skip to main content
Module

x/fluentdocker/flake.nix

Generate dockerfiles from a simple declarative syntax in typescript and build them with ease πŸ‹ πŸš€ ✨
Latest
File
{ description = "A Nix-flake-based Deno development environment"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/release-23.05"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils, }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; in { devShells.default = pkgs.mkShell { buildInputs = [ pkgs.deno ]; }; });}