version docs pages

This commit is contained in:
outfoxxed 2025-07-22 01:08:30 -07:00
parent 5865251560
commit 010557ea77
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
30 changed files with 324 additions and 340 deletions

View file

@ -1,11 +1,6 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
quickshell-docs = {
url = "git+https://git.outfoxxed.me/quickshell/quickshell-docs";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, quickshell-docs }: let
@ -14,10 +9,7 @@
(system: fn system nixpkgs.legacyPackages.${system});
in {
packages = forEachSystem (system: pkgs: rec {
quickshell-web = pkgs.callPackage ./default.nix {
quickshell-types = quickshell-docs.packages.${system}.quickshell-types;
};
quickshell-web = pkgs.callPackage ./default.nix {};
default = quickshell-web;
});
};