18 lines
470 B
Nix
18 lines
470 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [ recursive noto-fonts-cjk-sans noto-fonts-emoji ];
|
|
fontProfiles = {
|
|
enable = true;
|
|
monospace = {
|
|
family = "RecMonoCasual Nerd Font";
|
|
package = pkgs.nerdfonts.override { fonts = [ "Recursive" ]; };
|
|
};
|
|
regular = {
|
|
family = "Recursive Sans Linear Static";
|
|
package = pkgs.recursive;
|
|
};
|
|
bitmap = {
|
|
family = "TamzenForPowerline";
|
|
package = pkgs.tamzen;
|
|
};
|
|
};
|
|
}
|