diff options
Diffstat (limited to '')
-rw-r--r-- | default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 9c12498..78d2ce9 100644 --- a/default.nix +++ b/default.nix @@ -6,6 +6,12 @@ in rec { src = pkgs.nix-gitignore.gitignoreSource [ ] ./.; baseName = "website"; }; + jekyllEnv = pkgs.bundlerEnv { + name = "jekyll-env"; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + }; subtasks = rec { hunspellCheck = utils.baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-hunspell"; @@ -42,6 +48,7 @@ in rec { shell = pkgs.mkShell rec { name = "website-shell"; buildInputs = [ + jekyllEnv (pkgs.hunspellWithDicts (with pkgs.hunspellDicts; [ en-us ])) ]; }; |