org-howto/shell.nix
Roland Conybeare 8b4bd64f59
All checks were successful
Deploy / publish (push) Successful in 18s
bugfix: forgejo workflow batch-mode emacs fixes for fontify color
2026-06-18 00:17:15 -04:00

13 lines
228 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
emacs = (pkgs.emacsPackagesFor pkgs.emacs30).emacsWithPackages (ep: [
ep.htmlize
ep.nix-mode
ep.yaml-mode
ep.cmake-mode
]);
in
pkgs.mkShell {
buildInputs = [ emacs ];
}