me like nix
0

Configure Feed

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

change display stuff

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit a5d56058 parent 94c9dc96 change-id mptrpqly
+19
+19
hosts/common/home.nix
··· 668 668 }; 669 669 }; 670 670 671 + # Font rendering configuration 672 + fonts.fontconfig = { 673 + enable = true; 674 + defaultFonts = { 675 + monospace = [ "BerkeleyMono Nerd Font" ]; 676 + sansSerif = [ "Noto Sans" ]; 677 + serif = [ "Noto Serif" ]; 678 + }; 679 + }; 680 + 681 + # Cursor configuration 682 + home.pointerCursor = { 683 + name = "Adwaita"; 684 + package = pkgs.adwaita-icon-theme; 685 + size = 16; 686 + x11.enable = true; 687 + gtk.enable = true; 688 + }; 689 + 671 690 # Session variables 672 691 home.sessionVariables = { 673 692 EDITOR = "hx";