blob: 6c2f42cfe01dd9fe1f395b109752681e087b6a25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ lib, config, pkgs, ... }:
{
home.packages = with pkgs; [
emacsPgtkGcc
# see https://github.com/hlissner/doom-emacs/issues/4138
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
];
}
|