first commit

This commit is contained in:
2026-05-05 08:30:51 +02:00
commit c0e781bf00
107 changed files with 7024 additions and 0 deletions

26
overlays/mods/n8n.nix Normal file
View File

@@ -0,0 +1,26 @@
# {prev}:
# prev.n8n.overrideAttrs (oldAttrs: rec {
# version = "1.112.6";
# src = prev.fetchFromGitHub {
# owner = "n8n-io";
# repo = "n8n";
# rev = "n8n@${version}";
# hash = "sha256-r/MCU/S1kkKQPkhmp9ZHTtgZxMu5TFCl5Yejp73gATw=";
# };
# pnpmDeps = prev.pnpm_10.fetchDeps {
# pname = oldAttrs.pname;
# inherit version src;
# fetcherVersion = 1;
# hash = "sha256-j+HJhvzrcu8JsezcFJxfgteOgTspWQb2ZSN2fEl7Voo=";
# };
# nativeBuildInputs =
# builtins.map
# (input:
# if input == prev.pnpm_9.configHook
# then prev.pnpm_10.configHook
# else input)
# oldAttrs.nativeBuildInputs;
# })