mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-02-07 11:43:06 +01:00
15 lines
526 B
Nix
15 lines
526 B
Nix
{
|
|
imports = [
|
|
# Applies some useful arguments, like namespace, to all flake modules.
|
|
./arguments.nix
|
|
|
|
# Automagically imports libs from "/lib/lib-name" and applies them to the `lib.${namespace}` or `puzzlevision.lib` module argument.
|
|
./lib.nix
|
|
|
|
# Recursively imports overlays from "/overlays/overlay-name" and applies them to the `pkgs` or `puzzlevision.pkgs` module argument.
|
|
# ./overlays.nix
|
|
|
|
# Automagically imports systems from "/systems/arch-classname/system-name".
|
|
./systems.nix
|
|
];
|
|
}
|