nixos-configs/homeConfigurations/vinzenz/fonts.nix

9 lines
119 B
Nix
Raw Normal View History

2025-10-02 17:01:21 +02:00
{ pkgs, ... }:
{
2025-11-11 15:23:24 +01:00
fonts.fontconfig.enable = true;
2025-10-02 17:01:21 +02:00
home.packages = with pkgs; [
roboto-mono
recursive
];
}