mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
19 lines
282 B
Nix
19 lines
282 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
|
|
];
|
|
}
|