From cf7d40add412beab15a9204590c1696a4e17c8f2 Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Mon, 14 Oct 2024 07:42:11 +0200 Subject: [PATCH] fix: add nerdfonts for symbols --- modules/shell.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/shell.nix b/modules/shell.nix index 11c0eff..31eaa70 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -1,3 +1,4 @@ +{ pkgs, ... }: { programs.zsh.enable = true; programs.zsh.ohMyZsh.enable = true; @@ -6,4 +7,8 @@ environment.shellAliases = { os-update = "sudo nixos-rebuild switch --flake '/home/rhea/nix-config'"; }; + + fonts.fonts = with pkgs; [ + nerdfonts + ]; }