From 0d5004b3d9480175dca260123b8b32ab94ffc81d Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 22 Sep 2024 18:01:58 +0800 Subject: [PATCH] flake/dev: update attributes for website --- configs/flake-parts/dev.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configs/flake-parts/dev.nix b/configs/flake-parts/dev.nix index 885eb238..6b4d6dfa 100644 --- a/configs/flake-parts/dev.nix +++ b/configs/flake-parts/dev.nix @@ -43,7 +43,13 @@ nur.repos.rycee.mozilla-addons-to-nix ]; }; - docs = import ../../docs/shell.nix { inherit pkgs; }; + website = import ../../docs/website/shell.nix { inherit pkgs; }; + }; + + # Packages that are meant to be consumed inside of a development + # environment. + devPackages = { + inherit (import ../../docs { inherit pkgs; }) website; }; }; }