mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 12:50:05 +00:00
18 lines
526 B
Nix
18 lines
526 B
Nix
{
|
|
imports = [
|
|
# Exposes nixosModules and homeModules on flake outputs.
|
|
./modules.nix
|
|
|
|
# Automagically imports libs from "/lib/lib-name" and exposes them to the `flake.lib` output.
|
|
./lib.nix
|
|
|
|
# Recursively imports overlays from "/overlays/overlay-name" and exposes them to the `flake.overlays` output.
|
|
#./overlays.nix
|
|
|
|
# Automagically imports systems from "/systems/arch-classname/system-name".
|
|
./systems.nix
|
|
|
|
# Automagically imports homes from "/homes/user-name".
|
|
#./homes.nix
|
|
];
|
|
}
|