Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
12 lines
179 B
Nix
12 lines
179 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fontDir.enable = true;
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
inter
|
|
nerd-fonts.zed-mono
|
|
];
|
|
fontconfig.enable = true;
|
|
};
|
|
}
|