Progress rewrite further

This commit is contained in:
caem 2025-01-10 23:38:56 +01:00
parent bc6d1e6984
commit b00e1c1c9d
Signed by: caem
GPG key ID: 69A830D03203405F
15 changed files with 169 additions and 44 deletions

View 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" ];
};
};
};
}