devshells: add website devshell

This commit is contained in:
ooks-io 2024-10-31 17:27:56 +11:00
parent a9280b78cd
commit f1ebe05f1d
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
perSystem = {pkgs, ...}: {
devShells = {
website = pkgs.mkShellNoCC (import ./website.nix {inherit pkgs;});
};
};
}