mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
417623965e
also change theme to colorscheme
14 lines
245 B
Nix
14 lines
245 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
|
|
fonts.fonts = with pkgs;
|
|
[
|
|
pkgs.victor-mono # Used for Vim and Terminal
|
|
];
|
|
fonts.fontconfig.defaultFonts.monospace = [ "Victor Mono" ];
|
|
|
|
};
|
|
|
|
}
|