35 lines
786 B
Nix
35 lines
786 B
Nix
{
|
|
description = "Démarchage emploi : TypeScript/Node, emails Resend depuis delikesance.cloud (DNS Cloudflare)";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs }:
|
|
let
|
|
inherit (nixpkgs) lib;
|
|
systems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
forEachSystem = f: lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
|
|
in
|
|
{
|
|
formatter = forEachSystem (pkgs: pkgs.nixfmt-rfc-style);
|
|
|
|
devShells = forEachSystem (pkgs: {
|
|
default = pkgs.mkShell {
|
|
name = "hire-me";
|
|
packages = with pkgs; [
|
|
nodejs_22
|
|
pnpm
|
|
jq
|
|
curl
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|