https://git.jolheiser.com/recipes.git
1 2 3 4 5 6 7 8 9 10 11 12
{ inputs.nixpkgs.url = "github:nixos/nixpkgs"; outputs = { nixpkgs, ... }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { devShells.${system}.default = pkgs.mkShell { nativeBuildInputs = [ pkgs.cook-cli ]; }; }; }