recipes/web/flake.nix

22 lines
469 B
Nix

{
description = "Recipes web";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = {self, nixpkgs, utils}:
let out = system:
let pkgs = nixpkgs.legacyPackages."${system}";
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
nodePackages.sass
];
};
};
in with utils.lib; eachSystem defaultSystems out;
}