Commit 4a9b8db

HPCesia <me@hpcesia.com>
2025-10-03 15:14:29
refactor: fix unmigrated font configs
1 parent b99ae49
Changed files (2)
home
linux
modules
desktop
home/linux/gui/misc.nix
@@ -33,8 +33,4 @@ in {
   # Fix pcsc conflict
   # https://github.com/LudovicRousseau/PCSC/issues/65
   programs.gpg.scdaemonSettings.disable-ccid = true;
-
-  # allow fontconfig to discover fonts and configurations installed through home.packages
-  # Install fonts at system-level, not user-level
-  fonts.fontconfig.enable = false;
 }
modules/desktop/fonts/default.nix
@@ -31,4 +31,10 @@
       };
     };
   };
+
+  flake.modules.homeManager.desktop = _: {
+    # allow fontconfig to discover fonts and configurations installed through home.packages
+    # Install fonts at system-level, not user-level
+    fonts.fontconfig.enable = false;
+  };
 }