20 lines
510 B
Nix
20 lines
510 B
Nix
{inputs, ...}: {
|
|
# This one brings our custom packages from the 'pkgs' directory
|
|
additions = final: _prev: import ../packages {pkgs = final;};
|
|
|
|
modifications = final: prev: {
|
|
mealie = final.unstable.mealie;
|
|
};
|
|
|
|
|
|
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
|
|
# be accessible through 'pkgs.unstable'
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|
|
|