14 lines
245 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-30 12:32:00 -04:00
config = lib.mkIf config.gui.enable {
2022-04-30 12:32:00 -04:00
fonts.fonts = with pkgs;
[
pkgs.victor-mono # Used for Vim and Terminal
2022-04-30 12:32:00 -04:00
];
fonts.fontconfig.defaultFonts.monospace = [ "Victor Mono" ];
2022-04-30 12:32:00 -04:00
};
2022-04-28 22:25:05 -04:00
}