packages/landing: init devShell

This commit is contained in:
Max Headroom 2022-07-31 15:48:55 +02:00
parent a7a03c254e
commit dbdae08da2
3 changed files with 12 additions and 0 deletions

View file

@ -24,6 +24,8 @@
imports = [ imports = [
./tests ./tests
./modules/devshell.nix ./modules/devshell.nix
./websites/landing/project.nix
]; ];
packages = filters.doFilter filters.packages rec { packages = filters.doFilter filters.packages rec {
ghost = let ghost = let

View file

@ -0,0 +1 @@
source ../../build-support/activate-shell

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
projectShells.landing = {
tools = with pkgs; [
hugo
];
};
}