mirror of
https://github.com/kmein/niveum
synced 2026-03-29 16:51:07 +02:00
Compare commits
3 Commits
e0e0dd9e34
...
565c73bd05
| Author | SHA1 | Date | |
|---|---|---|---|
| 565c73bd05 | |||
| e5f933977c | |||
| 736b289643 |
@@ -45,11 +45,11 @@
|
|||||||
vollkorn
|
vollkorn
|
||||||
zilla-slab
|
zilla-slab
|
||||||
]; # google-fonts league-of-moveable-type
|
]; # google-fonts league-of-moveable-type
|
||||||
fontconfig.defaultFonts = {
|
fontconfig.defaultFonts = rec {
|
||||||
monospace = ["Noto Sans Mono"];
|
monospace = ["Noto Sans Mono"] ++ emoji;
|
||||||
serif = ["Noto Serif" "Noto Naskh Arabic" "Noto Serif Devanagari"];
|
serif = ["Noto Serif" "Noto Naskh Arabic" "Noto Serif Devanagari"];
|
||||||
sansSerif = ["Noto Sans Display" "Noto Kufi Arabic" "Noto Sans Devanagari" "Noto Sans CJK JP"];
|
sansSerif = ["Noto Sans Display" "Noto Kufi Arabic" "Noto Sans Devanagari" "Noto Sans CJK JP"];
|
||||||
emoji = ["Noto Color Emoji" "Noto Emoji"];
|
emoji = ["Noto Color Emoji"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,6 @@ in {
|
|||||||
home-manager.users.me.programs.rofi = {
|
home-manager.users.me.programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = "Monospace 10";
|
font = "Monospace 10";
|
||||||
theme = "${pkgs.rofi}/share/rofi/themes/Arc-Dark.rasi";
|
theme = "${pkgs.rofi}/share/rofi/themes/Arc.rasi";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
with open("${
|
with open("${
|
||||||
fetchurl {
|
fetchurl {
|
||||||
url = "https://unicode.org/Public/UCD/latest/ucd/UnicodeData.txt";
|
url = "https://unicode.org/Public/UCD/latest/ucd/UnicodeData.txt";
|
||||||
sha256 = "sha256-NgGOaGV/3LNIX2NmMP/oyFMuAcl3cD0oA/W4nWxf6vs=";
|
sha256 = "0wva6ygnh3wrzpzy0kcbc32hz1ydx3k2pqc5xkqrfw83cpnrlvl0";
|
||||||
}
|
}
|
||||||
}", "r") as unicode_data:
|
}", "r") as unicode_data:
|
||||||
reader = csv.reader(unicode_data, delimiter=";")
|
reader = csv.reader(unicode_data, delimiter=";")
|
||||||
|
|||||||
Reference in New Issue
Block a user