nix-config/hosts/common/optional/fonts.nix
Lander Van den Bulcke 12edf047ae
chore: update to 25.05
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-06-17 23:35:52 +02:00

12 lines
179 B
Nix

{ config, pkgs, ... }:
{
fonts.fontDir.enable = true;
fonts = {
packages = with pkgs; [
inter
nerd-fonts.zed-mono
];
fontconfig.enable = true;
};
}