about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--kittybox.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/kittybox.nix b/kittybox.nix
index de14cb7..b078c93 100644
--- a/kittybox.nix
+++ b/kittybox.nix
@@ -9,7 +9,7 @@ assert usePostgres -> postgresql != null && postgresqlTestHook != null;
 let
   featureMatrix = features: lib.concatStringsSep " " (lib.attrNames (lib.filterAttrs (k: v: v) features));
 
-  suffixes = [ ".sql" ".ts" ".css" ".html" ".json" ];
+  suffixes = [ ".sql" ".ts" ".css" ".html" ".json" ".woff2" ];
   suffixFilter = suffixes: name: type:
       let base = baseNameOf (toString name);
       in type == "directory" || lib.any (ext: lib.hasSuffix ext base) suffixes;