(T)im's N(ix) Flake, Multi-Host Configurations for all of my machines! 74k1.sh/
nixos nix
0
fork

Configure Feed

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

feat(wired): add fontconfig

74k1 6ee301b8 b96e380f

+12
+12
hosts/nixos/wired/configuration.nix
··· 83 83 binfmt.emulatedSystems = [ "aarch64-linux" ]; 84 84 }; 85 85 86 + fonts = { 87 + enableDefaultPackages = true; 88 + fontconfig = { 89 + antialias = true; 90 + cache32Bit = true; 91 + hinting = { 92 + enable = true; 93 + autohint = true; 94 + }; 95 + }; 96 + }; 97 + 86 98 networking.hostName = "wired"; # Define your hostname. 87 99 # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. 88 100