Port CSS to Tailwind

This commit is contained in:
Andrey Golovizin 2020-02-07 20:45:32 +01:00
parent ec098fa934
commit ec175fe0c6
5 changed files with 66 additions and 190 deletions

View file

@ -7,4 +7,13 @@ let
}) {};
python = import ./requirements.nix { inherit pkgs; };
in
python.interpreter
pkgs.mkShell {
name = "strojnadzor-env";
buildInputs = [
pkgs.nodejs
python.interpreter
];
shellHook = ''
'';
preferLocalBuild = true;
}