1
0
Fork 0

Change cursors and font

This commit is contained in:
Avery 2024-09-08 20:21:49 +02:00
parent bce65f6835
commit 6f2c204e91
Signed by: Avery
GPG key ID: B684FD451B692E04
4 changed files with 14 additions and 9 deletions

View file

@ -48,14 +48,15 @@
fonts = {
packages = with pkgs; [
inter
(nerdfonts.override { fonts = [ "Iosevka" ]; })
ubuntu-sans
(nerdfonts.override { fonts = [ "Iosevka" "UbuntuMono" ]; })
];
fontconfig = {
defaultFonts = {
serif = [ "Inter" ];
sansSerif = [ "Inter" ];
monospace = [ "Iosevka Nerd Font" ];
serif = [ "Ubuntu Sans" ];
sansSerif = [ "Ubuntu Sans" ];
monospace = [ "Ubuntu Mono Nerd Font" ];
};
};
};