wrapper-manager-fds/shell: update docs attribute

This commit is contained in:
Gabriel Arazas 2024-07-31 16:45:08 +08:00
parent dc624a67f4
commit f8aee70c6a
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@
in {
devShells = {
default = import ./shell.nix { inherit pkgs; };
website = import ./docs/shell.nix { inherit pkgs; };
website = import ./docs/website/shell.nix { inherit pkgs; };
};
packages.website = docs.website;

View File

@ -4,10 +4,10 @@ in
{ pkgs ? import sources.nixos-unstable { } }:
let
websitePkg = import ./docs { inherit pkgs; };
docs = import ./docs { inherit pkgs; };
in
pkgs.mkShell {
inputsFrom = [ websitePkg ];
inputsFrom = [ docs.website ];
packages = with pkgs; [
npins