fix(docs): adjust script to overlay changes
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-03-05 23:22:06 -05:00
parent 94bb2f6089
commit 138a6637e2
7 changed files with 9 additions and 5 deletions

View file

@ -95,9 +95,7 @@
perSystem (pkgs:
import ./apps {inherit pkgs self;});
appsPackages =
perSystem (pkgs:
import ./apps/packages.nix {inherit inputs pkgs;});
appsPackages = perSystem (pkgs: pkgs.appsPackages);
devShells =
perSystem (pkgs:

View file

@ -8,5 +8,6 @@ This directory contains every derivations for apps exposed by this flake.
| ---- | ----------- |
| `extract-subs` | Extract all `srt` subtitle files from a `mkv` video with the appropriate name. |
| `gen-docs` | Generates the READMEs in this repository from nix attributes. |
| `mc-mods` | Checks if a list of mods have a version available for a specific Minecraft version and a specific loader. |
| `pin-inputs` | Takes a list of inputs to pin to their current rev in `flake.lock`. |
| `update-sources` | Updates all derivation sources in this repository and generates a commit message for the changes made. |

View file

@ -2,7 +2,7 @@ attr: selfPath: let
inherit (builtins) currentSystem getFlake mapAttrs removeAttrs replaceStrings;
self = getFlake selfPath;
scopes = import "${selfPath}/${attr}" {description = true;};
scopes = ((import "${selfPath}/${attr}" {description = true;}) {} {}).scopedPackages;
trimNewlines = s: replaceStrings ["\n"] [" "] s;
in {

View file

@ -86,7 +86,7 @@ in {
}
else pkgs.discord;
# FIXME: https://github.com/KaylorBen/nixcord/issues/84
# FIXME: wait for https://github.com/KaylorBen/nixcord/pull/85
vencord.unstable = false;
openASAR.enable = false;

View file

@ -6,6 +6,9 @@ This directory contains every overlay exposed by this flake.
| Name | Description |
| ---- | ----------- |
| `appsPackages` | This overlay puts every derivations for apps exposed by this flake under pkgs.appsPackages. |
| `misc-fixes` | Fixes build failures, missing meta attributes, evaluation failures, etc. of the current `nixpkgs` revision of this flake. |
| `nix-version` | Overrides the nix package for everything so I don't need multiple versions. |
| `scopedPackages` | This overlay puts every package scopes exposed by this flake under pkgs.scopedPackages. |
| `selfPackages` | This overlay puts every derivations for packages exposed by this flake under pkgs.selfPackages. |
| `xdg-desktop-portal-kde` | Fixes this issue: https://invent.kde.org/plasma/xdg-desktop-portal-kde/-/issues/15 |

View file

@ -6,6 +6,7 @@ This directory contains every derivations for packages exposed by this flake.
| Name | Description | Homepage |
| ---- | ----------- | -------- |
| `coloryou` | Get Material You colors from an image. | https://git.nelim.org/matt1432/nixos-configs/src/branch/master/packages/coloryou |
| `gpu-screen-recorder` | Screen recorder that has minimal impact on system performance by recording a window using the GPU only. | https://git.dec05eba.com/gpu-screen-recorder/about |
| `gsr-kms-server` | Small program giving safe KMS access to gpu-screen-recorder when recording a monitor. This is the only part of gpu-screen-recorder that could require root permissions. | https://git.dec05eba.com/gpu-screen-recorder/about |
| `homepage` | Highly customisable dashboard with Docker and service API integrations. | https://gethomepage.dev |

View file

@ -20,5 +20,6 @@ in
meta = {
inherit (project) description;
homepage = "https://git.nelim.org/matt1432/nixos-configs/src/branch/master/packages/coloryou";
};
}