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
{
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 = {