···11+# Examples
22+33+## [Nixpkgs](https://github.com/Fuwn/yae/tree/main/examples/nixpkgs)
44+55+This example showcases adding the Nixpkgs unstable branch as a Yae source,
66+consuming it within an example flake, and mirroring the `hello` package from
77+Nixpkgs as a flake output.
88+99+Note that the flake has no inputs. This is because Yae directly manages the
1010+Nixpkgs source.
1111+1212+This example is extremely useful and is intended be adapted to suite the specific
1313+needs of flake-less Nix configurations, like classic Nix shells and flake-less system
1414+configurations.
1515+1616+## [Nixpkgs Simple](https://github.com/Fuwn/yae/tree/main/examples/nixpkgs-simple)
1717+1818+This example is functionally identical to the Nixpkgs example, with the exception
1919+that it utilises `builtins.currentSystem` to populate the `nixpkgs.system`
2020+attribute, requiring the `--impure` command-line flag.
2121+2222+This example is purely for the sake of example, since in a real-world scenario,
2323+you'd likely use something similar to [flake-utils](https://github.com/numtide/flake-utils)
2424+for multi-system output management and populating the `nixpkgs.system` attribute.