aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/desktop/fonts.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/desktop/fonts.nix')
-rw-r--r--hosts/common/desktop/fonts.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/hosts/common/desktop/fonts.nix b/hosts/common/desktop/fonts.nix
deleted file mode 100644
index 747abd1..0000000
--- a/hosts/common/desktop/fonts.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, config, lib, ... }:
-
-{
- fonts = {
- enableDefaultFonts = true;
- fontDir.enable = true;
- fontconfig.enable = true;
- fonts = with pkgs; [
- dejavu_fonts
- font-awesome_5
- noto-fonts
- noto-fonts-cjk # Chinese, Japanese, Korean
- noto-fonts-emoji
- noto-fonts-emoji
- noto-fonts-extra
- source-code-pro
- source-sans-pro
- source-serif-pro
- ];
-
- fontconfig.defaultFonts = {
- monospace = [ "Source Code Pro" ];
- };
- };
-}