Added a jekyll.nix shell

This commit is contained in:
2025-05-31 20:04:29 +03:00
parent 6b37774d03
commit b3cd1c194b

8
jekyll.nix Normal file
View File

@@ -0,0 +1,8 @@
let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
in pkgs.mkShell {
buildInputs = [ pkgs.ruby pkgs.r-gems pkgs.jekyll ];
shellHook = ''
exec fish
exec gem install bundler
'';
}