f89ad33c26
Update docs assignments / update (push) Successful in 57s
Regenerate the marked network-assignment tables in docs/ from nixos.allAssignments (nix run .#update-docs-assignments, registered in pkgs/default.nix), preserving hand-written Notes cells. The workflow runs on pushes to the docs branch and commits any table updates back; flip its trigger to master when the docs branch merges.
19 lines
689 B
Nix
19 lines
689 B
Nix
{ lib, pkgs }:
|
|
let
|
|
inherit (pkgs) callPackage;
|
|
in
|
|
{
|
|
# yeah turns out this is in nixpkgs now... we'll leave it as a sample i guess lol
|
|
monocraft' = callPackage ./monocraft.nix { };
|
|
vfio-pci-bind = callPackage ./vfio-pci-bind.nix { };
|
|
librespeed-go = callPackage ./librespeed-go.nix { };
|
|
# modrinth-app = callPackage ./modrinth-app { };
|
|
chocolate-doom2xx = callPackage ./chocolate-doom2xx { };
|
|
windowtolayer = callPackage ./windowtolayer.nix { };
|
|
swaylock-plugin = callPackage ./swaylock-plugin.nix { };
|
|
|
|
update-docs-assignments = pkgs.writeShellScriptBin "update-docs-assignments" ''
|
|
exec ${pkgs.python3}/bin/python3 ${../ci/update-docs-assignments.py} "$@"
|
|
'';
|
|
}
|