aboutsummaryrefslogtreecommitdiff
path: root/nixos/alpha
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-01-21 20:51:39 +0900
committersefidel <contact@sefidel.net>2022-01-21 20:51:39 +0900
commit2e52b80529b09829b67199bd888354a64c2578db (patch)
tree3d8d62c8262bce8994c4e874a05c140e2561b20f /nixos/alpha
parente76260f53696fe99b998ee0017a76b260418ad99 (diff)
downloadnixrc-2e52b80529b09829b67199bd888354a64c2578db.zip
nixos/alpha: install fonts system-wide
Diffstat (limited to 'nixos/alpha')
-rw-r--r--nixos/alpha/configuration.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix
index dddd774..0825140 100644
--- a/nixos/alpha/configuration.nix
+++ b/nixos/alpha/configuration.nix
@@ -83,6 +83,53 @@
systemd.extraConfig = "RebootWatchdogSec=5";
+ fonts = {
+ fontDir.enable = true;
+
+ fonts = with pkgs; [
+ iosevka-pure-bin
+ ctrld-font
+ sarasa-gothic
+ scientifica
+ siji
+ jetbrains-mono
+ twemoji-color-font
+ emacs-all-the-icons-fonts
+ (nerdfonts.override { fonts = [ "Iosevka" "JetBrainsMono" ]; })
+ ];
+
+ fontconfig = {
+ enable = true;
+
+ defaultFonts = {
+ serif = [
+ "Sarasa Gothic C"
+ "Sarasa Gothic J"
+ "Sarasa Gothic K"
+ ];
+
+ sansSerif = [
+ "Sarasa Gothic C"
+ "Sarasa Gothic J"
+ "Sarasa Gothic K"
+ ];
+
+ monospace = [
+ "CtrlD"
+ "scientifica"
+ "Iosevka Pure"
+ "Iosevka Nerd Font"
+ "JetBrainsMono Nerd Font"
+ ];
+
+ emoji = [
+ "Siji"
+ "Twitter Color Emoji"
+ ];
+ };
+ };
+ };
+
programs = {
sway = {
enable = true;