dotfiles/modules/desktop/fonts.nix

14 lines
245 B
Nix
Raw Normal View History

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