This commit is contained in:
m3tam3re
2024-10-17 18:57:52 +02:00
parent 6c720bdac6
commit c6d1b9a2ad
11 changed files with 76 additions and 29 deletions

View File

@@ -1,16 +1,13 @@
{ inputs, ... }: {
{inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../pkgs { pkgs = final; };
additions = final: _prev: import ../pkgs {pkgs = final;};
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
modifications = final: prev:
{
# example = prev.example.overrideAttrs (oldAttrs: rec {
# ...
# });
};
modifications = final: prev: {
n8n = import ./mods/n8n.nix {inherit prev;};
};
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {