Progress rewrite further
This commit is contained in:
parent
bc6d1e6984
commit
b00e1c1c9d
15 changed files with 169 additions and 44 deletions
27
modules/nixos/core/fonts.nix
Normal file
27
modules/nixos/core/fonts.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
(nerdfonts.override {
|
||||
fonts = [
|
||||
"GoMono"
|
||||
];
|
||||
})
|
||||
ipafont
|
||||
noto-fonts-emoji
|
||||
cantarell-fonts
|
||||
newcomputermodern
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
cache32Bit = true;
|
||||
subpixel.rgba = "rgb";
|
||||
defaultFonts = {
|
||||
monospace = [ "Go Mono Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue