Files
nixos-shells/jekyll.nix
2025-05-31 20:04:29 +03:00

9 lines
206 B
Nix

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
'';
}