28 lines
695 B
Nix
28 lines
695 B
Nix
{
|
|
description = "Schlechtenburg";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
devshell.url = "github:numtide/devshell";
|
|
devshell.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = { self, flake-utils, devshell, nixpkgs }:
|
|
flake-utils.lib.simpleFlake {
|
|
inherit self nixpkgs;
|
|
name = "schlechtenburg";
|
|
preOverlays = [ devshell.overlays.default ];
|
|
shell = { pkgs }: pkgs.devshell.mkShell {
|
|
devshell.packages = with pkgs; [
|
|
nodejs
|
|
nodePackages.typescript
|
|
nodePackages.typescript-language-server
|
|
nodePackages.vue-language-server
|
|
];
|
|
};
|
|
};
|
|
}
|