nixcfg/overlays/default.nix

19 lines
558 B
Nix
Raw Normal View History

2024-10-17 18:57:52 +02:00
{inputs, ...}: {
2024-08-28 15:35:11 +02:00
# This one brings our custom packages from the 'pkgs' directory
2024-10-17 18:57:52 +02:00
additions = final: _prev: import ../pkgs {pkgs = final;};
2024-08-28 15:35:11 +02:00
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
2024-10-17 18:57:52 +02:00
modifications = final: prev: {
n8n = import ./mods/n8n.nix {inherit prev;};
};
2024-08-28 15:35:11 +02:00
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
};
}