aboutsummaryrefslogtreecommitdiff
path: root/system/fonts.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-07-18 23:39:42 -0700
committerCaroline Larimore <caroline@larimo.re>2024-07-18 23:39:42 -0700
commit65174b4b5c05bb143e6681a4cbcd0a95f04987e2 (patch)
tree35383af43f2aa972b316dd12e1d5d1bd5df84086 /system/fonts.nix
parent15c5050590415fd64e984e994ec77186918cf7b7 (diff)
Begin modularization!
Diffstat (limited to 'system/fonts.nix')
-rw-r--r--system/fonts.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/system/fonts.nix b/system/fonts.nix
deleted file mode 100644
index d582448..0000000
--- a/system/fonts.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ pkgs, ... }:
-
-{
- fonts = {
- packages = with pkgs; [
- nerdfonts
- noto-fonts
- noto-fonts-cjk
- noto-fonts-cjk-sans
- noto-fonts-cjk-serif
- noto-fonts-emoji
-
- minecraftia
- ];
-
- fontconfig = {
- defaultFonts = {
- monospace = [ "CaskaydiaMono Nerd Font" ];
- sansSerif = [ "DejaVu Sans" "Noto Sans CJK JP" "Noto Sans" ];
- serif = [ "DejaVu Serif" "Noto Serif CJK JP" "Noto Serif" ];
- };
- };
- };
-}