17 lines
333 B
Nix
17 lines
333 B
Nix
{
|
|
outputs =
|
|
{ nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
tailwindcss-language-server
|
|
tailwindcss_4
|
|
watchman
|
|
];
|
|
};
|
|
};
|
|
}
|