Apparently this will make fonts available
This commit is contained in:
parent
5400818042
commit
e2ff84273f
1 changed files with 16 additions and 2 deletions
18
flake.nix
18
flake.nix
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue