diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-03 21:52:58 +1100 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-07 15:26:53 +1100 |
| commit | 68637ee7dbdb194755697930c36272ad115af4a6 (patch) | |
| tree | 188bbca06615d86330947c1aecc7a98da73117a2 /release.nix | |
| parent | c13549d7a632fc107bc8802463806fc2002c9c54 (diff) | |
flake: expose `jobs` from `release.nix` as a flattened attrset
Diffstat (limited to 'release.nix')
| -rw-r--r-- | release.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release.nix b/release.nix index cba4210..18fb239 100644 --- a/release.nix +++ b/release.nix @@ -59,9 +59,9 @@ let }) (config: config.system.build.manual); in { - manualHTML = manual.manualHTML; - manpages = manual.manpages; - options = manual.optionsJSON; + docs = { + inherit (manual) manualHTML manpages optionsJSON; + }; examples.hydra = makeSystem ./modules/examples/hydra.nix; examples.lnl = makeSystem ./modules/examples/lnl.nix; |
