mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 04:10:05 +00:00
12 lines
337 B
Nix
12 lines
337 B
Nix
{
|
|
imports = [
|
|
# Automagically imports libs from "/lib/lib-name" and exposes them to the `flake.lib` output.
|
|
./lib.nix
|
|
|
|
# Automagically imports systems from "/systems/arch-classname/system-name".
|
|
./systems.nix
|
|
|
|
# Automagically import custom packages defined in "/pkgs/pkg-name/default.nix"
|
|
./packages.nix
|
|
];
|
|
}
|