mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
23 lines
671 B
Nix
23 lines
671 B
Nix
|
# My selection of fonts for this setup.
|
||
|
{ config, options, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
{
|
||
|
options.modules.desktop.fonts = {
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf config.modules.desktop.fonts.enable {
|
||
|
home.packages = with pkgs; [
|
||
|
fira-code # The programming font with fancy symbols.
|
||
|
ibm-plex # IBM's face.
|
||
|
noto-fonts # It's all about family and that's what so powerful about it.
|
||
|
noto-fonts-cjk # The universal font, Japanese-Chinese-Korean version.
|
||
|
stix-otf # The font you need for them math moonrunes.
|
||
|
];
|
||
|
};
|
||
|
}
|