1
0
Fork 0

Option fonts.fonts is now fonts.packages.

This commit is contained in:
Kevin Baensch 2023-08-18 12:00:13 +02:00
parent 11e51284fd
commit afbab36559
Signed by: derped
GPG Key ID: C0F1D326C7626543
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ mkIf (elem "fonts" config.machine.conffiles) {
# ultimate.enable = true;
includeUserConf = false;
};
fonts = with pkgs; [
packages = with pkgs; [
arphic-ukai
arphic-uming
crimson

View File

@ -167,5 +167,5 @@ in mkIf (elem "emacs::company" config.machine.pkgs) {
enable = (elem "emacs::elpy" config.machine.pkgs);
};
};
fonts.fonts = pkgs.emacs-all-the-icons-fonts.all;
fonts.packages = pkgs.emacs-all-the-icons-fonts.all;
}