From d7d64634eef57179b1411b251496154c0c54578b Mon Sep 17 00:00:00 2001 From: m3tm3re
Date: Tue, 23 Dec 2025 09:26:11 +0100
Subject: [PATCH] n8n to 2.1.2, flake update
---
README.md | 8 ++++----
flake.lock | 6 +++---
flake.nix | 2 +-
overlays/default.nix | 5 +----
overlays/mods/n8n.nix | 6 +++---
5 files changed, 12 insertions(+), 15 deletions(-)
diff --git a/README.md b/README.md
index cfb562a..5a45939 100644
--- a/README.md
+++ b/README.md
@@ -91,8 +91,8 @@ Add this repository to your flake inputs:
```nix
{
environment.systemPackages = [
- inputs.m3ta-nixpkgs.packages.${system}.code2prompt
- inputs.m3ta-nixpkgs.packages.${system}.hyprpaper-random
+ inputs.m3ta-nixpkgs.packages.${pkgs.stdenv.hostPlatform.system}.code2prompt
+ 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";
# 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;
# Or create aliases
@@ -218,7 +218,7 @@ Add shells system-wide:
# Make tools available to all users
environment.systemPackages =
- inputs.m3ta-nixpkgs.devShells.${pkgs.system}.python.buildInputs;
+ inputs.m3ta-nixpkgs.devShells.${pkgs.stdenv.hostPlatform.system}.python.buildInputs;
# System-wide aliases
environment.shellAliases = {
diff --git a/flake.lock b/flake.lock
index cc5c8c8..767b497 100644
--- a/flake.lock
+++ b/flake.lock
@@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
- "lastModified": 1759381078,
- "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=",
+ "lastModified": 1766309749,
+ "narHash": "sha256-3xY8CZ4rSnQ0NqGhMKAy5vgC+2IVK0NoVEzDoOh4DA4=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee",
+ "rev": "a6531044f6d0bef691ea18d4d4ce44d0daa6e816",
"type": "github"
},
"original": {
diff --git a/flake.nix b/flake.nix
index 8dca4cb..a272cea 100644
--- a/flake.nix
+++ b/flake.nix
@@ -77,7 +77,7 @@
# Development shells for various programming environments
# Usage: nix develop .#