1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 00:07:01 +00:00

nix.linux-builder: Add cores, diskSize, and memorySize to config example

This commit is contained in:
Thane Gill 2024-02-19 13:02:40 -08:00 committed by GitHub
parent 0e6857fa1d
commit f69079f76c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,6 +52,13 @@ in
{
environment.systemPackages = [ pkgs.neovim ];
virtualisation = {
# Larger linux-builder cores, ram, and disk.
cores = 6;
memorySize = lib.mkForce (1024 * 4);
diskSize = lib.mkForce (1024 * 5);
};
})
'';
description = lib.mdDoc ''