Skip to main content
Module

x/fluent_github_actions/flake.nix

Generate Github Actions Workflow Yaml from a simple declarative syntax in typescript 🛠️ 💻 ✨
Go to 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 ]; }; });}