oizys/modules/desktop/fonts.nix
2024-11-27 17:09:45 -06:00

18 lines
240 B
Nix

{
pkgs,
config,
lib,
...
}:
let
inherit (lib) mkIf;
in
{
config = mkIf config.oizys.desktop.enable {
fonts.fontconfig.enable = true;
fonts.packages = with pkgs; [
nerd-fonts.fira-code
recursive
];
};
}