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 + ]; }