marleyos/modules/nixos/shell/fonts.nix
2025-05-26 11:20:05 -07:00

10 lines
137 B
Nix

{pkgs, ...}: {
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
corefonts
noto-fonts
];
};
}