Add theme flake.nix to add tailwindcss

This commit is contained in:
Oliver Davies 2025-05-29 11:11:06 +01:00
parent 0dbbd96cda
commit 8a760f433f
3 changed files with 51 additions and 3 deletions

15
themes/opdavies/flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
tailwindcss
];
};
};
}