Add theme flake.nix to add tailwindcss
This commit is contained in:
parent
0dbbd96cda
commit
8a760f433f
3 changed files with 51 additions and 3 deletions
15
themes/opdavies/flake.nix
Normal file
15
themes/opdavies/flake.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue