13 lines
196 B
Nix
13 lines
196 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
noto-fonts
|
||
|
fira-code
|
||
|
font-awesome
|
||
|
(nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
|
||
|
];
|
||
|
}
|