summaryrefslogtreecommitdiff
path: root/nixos/modules/features/fonts
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/fonts')
-rw-r--r--nixos/modules/features/fonts/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nixos/modules/features/fonts/default.nix b/nixos/modules/features/fonts/default.nix
new file mode 100644
index 0000000..8ac4785
--- /dev/null
+++ b/nixos/modules/features/fonts/default.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }:
+
+{
+ fonts.fontconfig.enable = true;
+
+ environment.systemPackages = with pkgs; [
+ font-awesome
+ nerd-fonts.jetbrains-mono
+ nerd-fonts.symbols-only
+ jetbrains-mono
+ noto-fonts-color-emoji
+ ];
+} \ No newline at end of file