summaryrefslogtreecommitdiff
path: root/archetypes/profiles/desktop/default.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-08 21:59:19 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-08 21:59:19 -0600
commitd6189b8e6e84f9157504bb2763ff4785cf2407ea (patch)
tree9f896d66d7d42e57b29c2f200e45a5ea4b83727e /archetypes/profiles/desktop/default.nix
parent300f1f3d881cd46836a6686ff68997a80750f0d1 (diff)
downloadnixos-d6189b8e6e84f9157504bb2763ff4785cf2407ea.tar.xz
nixos-d6189b8e6e84f9157504bb2763ff4785cf2407ea.zip
remove extra fontconfig config files hack from home-manager now that the option is added in 25.11. add warning for unset fontconfig subpixelRendering and hinting
Diffstat (limited to 'archetypes/profiles/desktop/default.nix')
-rw-r--r--archetypes/profiles/desktop/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/archetypes/profiles/desktop/default.nix b/archetypes/profiles/desktop/default.nix
index 6d53f84..7555c56 100644
--- a/archetypes/profiles/desktop/default.nix
+++ b/archetypes/profiles/desktop/default.nix
@@ -1,4 +1,4 @@
-{ lib, config, pkgs, ... }: let
+{ lib, pkgs, ... }: let
mkDesktop = lib.mkOverride 920;
nixosConfig = {
@@ -67,6 +67,16 @@
sansSerif = mkDesktop [ "Inter" ];
monospace = mkDesktop [ "CommitMono" ];
};
+ configFile = {
+ tamzen-disable-anti-aliasing = {
+ enable = true;
+ source = ./resources/fontconfig/90-tamzen-disable-anti-aliasing.conf;
+ };
+ commit-mono-options = {
+ enable = true;
+ source = ./resources/fontconfig/90-commit-mono-options.conf;
+ };
+ };
};
programs = {