11 lines
184 B
Nix
11 lines
184 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
|
google-fonts
|
|
inter
|
|
cascadia-code
|
|
];
|
|
|
|
# fonts.fontconfig.enable = true;
|
|
}
|