https://domlink.deployments.hotsocket.fyi/
at main 386 B view raw
1{ 2 inputs = { 3 flake-utils.url = "github:numtide/flake-utils"; 4 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 5 }; 6 7 outputs = inputs: 8 inputs.flake-utils.lib.eachDefaultSystem (system: 9 let 10 pkgs = (import (inputs.nixpkgs) { inherit system; }); 11 in { 12 devShell = pkgs.mkShell { 13 buildInputs = with pkgs; [ 14 deno rsync netlify-cli 15 ]; 16 }; 17 } 18 ); 19}