19 lines
565 B
Nix
19 lines
565 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
(nerdfonts.override {
|
||
|
fonts = [
|
||
|
"Hack" # my default monospace font
|
||
|
"MPlus" # to display symbols on xmobar
|
||
|
"InconsolataGo" # sometimes I use it as a change from Hack
|
||
|
"CascadiaCode" # used by rofi; todo: set fontconfig to use MPlus instead
|
||
|
];
|
||
|
})
|
||
|
inter # Inter is my default sans-serif font
|
||
|
hack-font # Hack is my default monospace font
|
||
|
libertinus # Libertinus Serif is my default serif font
|
||
|
];
|
||
|
#fonts.fontconfig.enable = true;
|
||
|
}
|