mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
17 lines
269 B
Nix
17 lines
269 B
Nix
let
|
|
sources = import ../npins;
|
|
in
|
|
{ pkgs ? import sources.nixos-unstable { } }:
|
|
|
|
let
|
|
websitePkg = import ./. { inherit pkgs; };
|
|
in
|
|
with pkgs; mkShell {
|
|
inputsFrom = [ websitePkg ];
|
|
|
|
packages = [
|
|
nodePackages.prettier
|
|
vscode-langservers-extracted
|
|
];
|
|
}
|