diff options
| author | Fuwn <[email protected]> | 2024-09-05 11:24:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-05 11:24:33 -0700 |
| commit | 346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec (patch) | |
| tree | 9af288a724b9a834d3a361e65f035bc75279553f /modules/system/default.nix | |
| parent | Bump (diff) | |
| download | nixos-config-346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec.tar.xz nixos-config-346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec.zip | |
Bump
Diffstat (limited to 'modules/system/default.nix')
| -rw-r--r-- | modules/system/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/system/default.nix b/modules/system/default.nix index d6f1656..2234712 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -1,3 +1,4 @@ +{ lib, ... }: { imports = [ ./access @@ -23,7 +24,10 @@ }; }; - environment.enableAllTerminfo = true; + environement = { + enableAllTerminfo = true; + memoryAllocator.provider = lib.mkDefault "mimalloc"; + }; console = { earlySetup = true; |