n8n to 2.1.2, flake update

This commit is contained in:
m3tm3re
2025-12-23 09:26:11 +01:00
parent 0db161efac
commit d7d64634ee
5 changed files with 12 additions and 15 deletions

View File

@@ -91,8 +91,8 @@ Add this repository to your flake inputs:
```nix ```nix
{ {
environment.systemPackages = [ environment.systemPackages = [
inputs.m3ta-nixpkgs.packages.${system}.code2prompt inputs.m3ta-nixpkgs.packages.${pkgs.stdenv.hostPlatform.system}.code2prompt
inputs.m3ta-nixpkgs.packages.${system}.hyprpaper-random inputs.m3ta-nixpkgs.packages.${pkgs.stdenv.hostPlatform.system}.hyprpaper-random
]; ];
} }
``` ```
@@ -197,7 +197,7 @@ Add shells to your home-manager configuration for persistent access:
inputs.m3ta-nixpkgs.url = "git+https://code.m3ta.dev/m3tam3re/nixpkgs"; inputs.m3ta-nixpkgs.url = "git+https://code.m3ta.dev/m3tam3re/nixpkgs";
# Make tools globally available # Make tools globally available
home.packages = with inputs.m3ta-nixpkgs.devShells.${pkgs.system}; home.packages = with inputs.m3ta-nixpkgs.devShells.${pkgs.stdenv.hostPlatform.system};
python.buildInputs ++ devops.buildInputs; python.buildInputs ++ devops.buildInputs;
# Or create aliases # Or create aliases
@@ -218,7 +218,7 @@ Add shells system-wide:
# Make tools available to all users # Make tools available to all users
environment.systemPackages = environment.systemPackages =
inputs.m3ta-nixpkgs.devShells.${pkgs.system}.python.buildInputs; inputs.m3ta-nixpkgs.devShells.${pkgs.stdenv.hostPlatform.system}.python.buildInputs;
# System-wide aliases # System-wide aliases
environment.shellAliases = { environment.shellAliases = {

6
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1759381078, "lastModified": 1766309749,
"narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", "narHash": "sha256-3xY8CZ4rSnQ0NqGhMKAy5vgC+2IVK0NoVEzDoOh4DA4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", "rev": "a6531044f6d0bef691ea18d4d4ce44d0daa6e816",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -77,7 +77,7 @@
# Development shells for various programming environments # Development shells for various programming environments
# Usage: nix develop .#<shell-name> # Usage: nix develop .#<shell-name>
# Available shells: default, rust, python, nodejs, go, cpp, web, devops, data-science # Available shells: default, python, devops
devShells = forAllSystems ( devShells = forAllSystems (
system: let system: let
pkgs = pkgsFor system; pkgs = pkgsFor system;

View File

@@ -3,10 +3,7 @@
additions = final: prev: additions = final: prev:
(import ../pkgs {pkgs = final;}) (import ../pkgs {pkgs = final;})
# // (inputs.hyprpanel.overlay final prev) # // (inputs.hyprpanel.overlay final prev)
// {rose-pine-hyprcursor = inputs.rose-pine-hyprcursor.packages.${prev.system}.default;} // {rose-pine-hyprcursor = inputs.rose-pine-hyprcursor.packages.${prev.system}.default;};
// {
crush = inputs.nix-ai-tools.packages.${prev.system}.crush;
};
# This one contains whatever you want to overlay # This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really. # You can change versions, add patches, set compilation flags, anything really.

View File

@@ -1,18 +1,18 @@
{prev}: {prev}:
prev.n8n.overrideAttrs (oldAttrs: rec { prev.n8n.overrideAttrs (oldAttrs: rec {
version = "2.0.1"; version = "2.1.2";
src = prev.fetchFromGitHub { src = prev.fetchFromGitHub {
owner = "n8n-io"; owner = "n8n-io";
repo = "n8n"; repo = "n8n";
rev = "n8n@${version}"; rev = "n8n@${version}";
hash = "sha256-+RSQqPNcGdutwuh/cQ4C7vH8YwWOI2a/ZMH9F6VvB44="; hash = "sha256-8hwtVO09ulqsFrlM6a0o+suqSx/LAKi/2zV1B364uHU=";
}; };
pnpmDeps = prev.pnpm_10.fetchDeps { pnpmDeps = prev.pnpm_10.fetchDeps {
pname = oldAttrs.pname; pname = oldAttrs.pname;
inherit version src; inherit version src;
fetcherVersion = 1; fetcherVersion = 1;
hash = "sha256-a+LiOnfKSNbBn/3tmAYIlDHqEH4o2Uu1Puhnx1yxXRI="; hash = "sha256-IJN7f6EaKprEetv9NGdcAIgFn9uwfOjL4WQopQ19D0A=";
}; };
}) })