This commit is contained in:
Florian Schroedl
2024-01-23 11:20:17 +01:00
commit 803c53b8b7
28 changed files with 2729 additions and 0 deletions

29
flake.nix Normal file
View File

@@ -0,0 +1,29 @@
{
description = "perspective-test";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config = { allowUnfree = true; };
};
in
{
devShell = pkgs.mkShell rec {
buildInputs = with pkgs; [
bun
tailwindcss
pkgs.nodePackages.typescript-language-server
];
shellHook = ''
'';
};
});
}