projet-long/flake.nix

14 lines
390 B
Nix
Raw Normal View History

2023-03-07 15:52:48 +00:00
{
description = "Proj long prez";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in { devShell = pkgs.mkShell { buildInputs = with pkgs; [ nodejs ]; }; });
}