mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
c2da083e5f
Similar to wrapper-manager subproject, we're just preparing to make this multi-output for our project's documentation.
19 lines
279 B
Nix
19 lines
279 B
Nix
{ pkgs ? import <nixpkgs> {
|
|
overlays = [ (import ../overlays).default ];
|
|
} }:
|
|
|
|
|
|
let
|
|
site = pkgs.callPackage ./package.nix { };
|
|
in
|
|
pkgs.mkShell {
|
|
inputsFrom = [ site ];
|
|
|
|
packages = with pkgs; [
|
|
bundix
|
|
|
|
nodePackages.prettier
|
|
vscode-langservers-extracted
|
|
];
|
|
}
|