feat(config): add large buffer handling

This commit is contained in:
Nicolas Goudry 2024-06-04 20:59:45 +02:00
parent 454ba629d8
commit 71c1bc295f
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
2 changed files with 32 additions and 3 deletions

View file

@ -1,7 +1,11 @@
{ lib, pkgs, ... }:
{
extra.packages = [
(import ./package { inherit lib pkgs; })
];
extra = {
packages = [
(import ./package { inherit lib pkgs; })
];
config = "require('astrocore').setup({})";
};
}