Apparently this will make fonts available

This commit is contained in:
Benson Chu 2026-04-20 05:51:17 -05:00
parent 5400818042
commit e2ff84273f

View file

@ -95,12 +95,26 @@
devShells."${system}" = rec {
emacs-min = pkgs.mkShell {
packages = with pkgs; [
emacs
myEmacs
git
libtool
cmake gcc gnumake
roboto-mono ripgrep
ripgrep
fontconfig
commit-mono
roboto-mono
];
shellHook = ''
export FONTCONFIG_FILE="${
pkgs.makeFontsConf {
fontDirectories = with pkgs; [
commit-mono
roboto-mono
];
}}"
'';
};
emacs-devel = pkgs.mkShell {