Skip to content

Commit

Permalink
chore: update README
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <[email protected]>
  • Loading branch information
Scrumplex committed Sep 6, 2024
1 parent 2748780 commit 78053ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ This overlay provides the following packages:
- `index_camera_passthrough`
- `monado`
- `opencomposite`
- `opencomposite-hand-fixes`
- `opencomposite-vendored`
- `wlx-overlay-s`

[binary-cache]: https://app.cachix.org/cache/nix-community
Expand Down
4 changes: 2 additions & 2 deletions parts/readme.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
perSystem =
{ pkgs, self', ... }:
let
inherit (builtins) attrValues;
inherit (builtins) attrNames;
inherit (lib) concatMapStringsSep;
in
{
Expand All @@ -16,7 +16,7 @@
cat ${
pkgs.substituteAll {
src = ../README-template.md;
packageNames = concatMapStringsSep "\n" (pkg: "- `${pkg.pname}`") (attrValues self'.packages);
packageNames = concatMapStringsSep "\n" (name: "- `${name}`") (attrNames self'.packages);
}
} > README.md
'';
Expand Down

0 comments on commit 78053ec

Please sign in to comment.