Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nix: fixed missing emojis and icons

bpavuk 5b2379f6 84008183

+10 -2
+10 -2
nixos/home/fonts/default.nix
··· 1 1 { config, lib, pkgs }: 2 2 3 3 { 4 - fonts.fontconfig.enable = true; 5 - 6 4 home.packages = with pkgs; [ 7 5 nerd-fonts.jetbrains-mono 6 + noto-fonts 7 + noto-fonts-color-emoji 8 8 ]; 9 + 10 + gtk = { 11 + enable = true; 12 + iconTheme = { 13 + package = pkgs.adwaita-icon-theme; 14 + name = "Adwaita"; 15 + }; 16 + }; 9 17 }