diff --git a/packages/projects.nix b/packages/projects.nix index 1ef08c3..4b429b6 100644 --- a/packages/projects.nix +++ b/packages/projects.nix @@ -24,6 +24,8 @@ imports = [ ./tests ./modules/devshell.nix + + ./websites/landing/project.nix ]; packages = filters.doFilter filters.packages rec { ghost = let diff --git a/packages/websites/landing/.envrc b/packages/websites/landing/.envrc new file mode 100644 index 0000000..dbcfe1b --- /dev/null +++ b/packages/websites/landing/.envrc @@ -0,0 +1 @@ +source ../../build-support/activate-shell diff --git a/packages/websites/landing/project.nix b/packages/websites/landing/project.nix new file mode 100644 index 0000000..8fad7bf --- /dev/null +++ b/packages/websites/landing/project.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + projectShells.landing = { + tools = with pkgs; [ + hugo + ]; + }; +}