fix(docs): adjust script to overlay changes
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
94bb2f6089
commit
138a6637e2
7 changed files with 9 additions and 5 deletions
|
@ -95,9 +95,7 @@
|
||||||
perSystem (pkgs:
|
perSystem (pkgs:
|
||||||
import ./apps {inherit pkgs self;});
|
import ./apps {inherit pkgs self;});
|
||||||
|
|
||||||
appsPackages =
|
appsPackages = perSystem (pkgs: pkgs.appsPackages);
|
||||||
perSystem (pkgs:
|
|
||||||
import ./apps/packages.nix {inherit inputs pkgs;});
|
|
||||||
|
|
||||||
devShells =
|
devShells =
|
||||||
perSystem (pkgs:
|
perSystem (pkgs:
|
||||||
|
|
|
@ -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. |
|
| `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. |
|
| `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`. |
|
| `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. |
|
| `update-sources` | Updates all derivation sources in this repository and generates a commit message for the changes made. |
|
||||||
|
|
|
@ -2,7 +2,7 @@ attr: selfPath: let
|
||||||
inherit (builtins) currentSystem getFlake mapAttrs removeAttrs replaceStrings;
|
inherit (builtins) currentSystem getFlake mapAttrs removeAttrs replaceStrings;
|
||||||
|
|
||||||
self = getFlake selfPath;
|
self = getFlake selfPath;
|
||||||
scopes = import "${selfPath}/${attr}" {description = true;};
|
scopes = ((import "${selfPath}/${attr}" {description = true;}) {} {}).scopedPackages;
|
||||||
|
|
||||||
trimNewlines = s: replaceStrings ["\n"] [" "] s;
|
trimNewlines = s: replaceStrings ["\n"] [" "] s;
|
||||||
in {
|
in {
|
||||||
|
|
|
@ -86,7 +86,7 @@ in {
|
||||||
}
|
}
|
||||||
else pkgs.discord;
|
else pkgs.discord;
|
||||||
|
|
||||||
# FIXME: https://github.com/KaylorBen/nixcord/issues/84
|
# FIXME: wait for https://github.com/KaylorBen/nixcord/pull/85
|
||||||
vencord.unstable = false;
|
vencord.unstable = false;
|
||||||
openASAR.enable = false;
|
openASAR.enable = false;
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,9 @@ This directory contains every overlay exposed by this flake.
|
||||||
|
|
||||||
| Name | Description |
|
| 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. |
|
| `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. |
|
| `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 |
|
| `xdg-desktop-portal-kde` | Fixes this issue: https://invent.kde.org/plasma/xdg-desktop-portal-kde/-/issues/15 |
|
||||||
|
|
|
@ -6,6 +6,7 @@ This directory contains every derivations for packages exposed by this flake.
|
||||||
|
|
||||||
| Name | Description | Homepage |
|
| 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 |
|
| `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 |
|
| `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 |
|
| `homepage` | Highly customisable dashboard with Docker and service API integrations. | https://gethomepage.dev |
|
||||||
|
|
|
@ -20,5 +20,6 @@ in
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit (project) description;
|
inherit (project) description;
|
||||||
|
homepage = "https://git.nelim.org/matt1432/nixos-configs/src/branch/master/packages/coloryou";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue