diff options
author | Vika <vika@fireburn.ru> | 2025-01-02 14:19:24 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-01-02 14:19:24 +0300 |
commit | ac1defca9d81849f1a61d6cc7476f99939a4aa7c (patch) | |
tree | c970dfcbde30807e4386fd930271d2a6ee6a97f6 /kittybox.nix | |
parent | 37c1becdf506fd1effc2dbc6079192cb98eaaacd (diff) | |
download | kittybox-ac1defca9d81849f1a61d6cc7476f99939a4aa7c.tar.zst |
Don't exclude fonts from Nix builds
Change-Id: I1b4e56874b86151c9b76495f3a1f63ba8bd527b3
Diffstat (limited to 'kittybox.nix')
-rw-r--r-- | kittybox.nix | 2 |
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; |