mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
desktop: Use はちまるポップ font on phone
Might revert this later. Mainly used for context switching and to make the PinePhone more fun to use.
This commit is contained in:
parent
219e5d1b0b
commit
737d0e2d42
@ -190,6 +190,7 @@ in
|
||||
noto-fonts-cjk-serif
|
||||
noto-fonts-emoji
|
||||
maple-mono
|
||||
hachimarupop
|
||||
font-awesome
|
||||
(nerdfonts.override { fonts = [ "Noto" ]; })
|
||||
kanji-stroke-order-font
|
||||
@ -231,10 +232,14 @@ in
|
||||
name = "Aleo";
|
||||
};
|
||||
|
||||
sansSerif = {
|
||||
package = noto-fonts-cjk-sans;
|
||||
name = "Noto Sans CJK JP";
|
||||
};
|
||||
sansSerif =
|
||||
if phone then {
|
||||
package = pkgs.hachimarupop;
|
||||
name = "はちまるポップ";
|
||||
} else {
|
||||
package = noto-fonts-cjk-sans;
|
||||
name = "Noto Sans CJK JP";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = maple-mono;
|
||||
|
Loading…
Reference in New Issue
Block a user