mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-05-12 14:39:48 +02:00
18 lines
602 B
Nix
18 lines
602 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
|
|
|
|
# Automagically imports homes from "/homes/user-name".
|
|
./homes.nix
|
|
];
|
|
}
|