mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
21 lines
411 B
Nix
21 lines
411 B
Nix
|
{
|
||
|
inputs,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
# Overwrite and add new arguments to all flake modules.
|
||
|
_module.args = {
|
||
|
namespace = config.flake.namespace;
|
||
|
|
||
|
# Initialize nixpkgs instance with custom overlays.
|
||
|
pkgs = import inputs.nixpkgs {
|
||
|
overlays = [
|
||
|
(final: prev: {
|
||
|
# Todo: actually append overlays from "/overlays/overlay-name/default.nix" files.
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|