nix/os-mods/mac-vm/default.nix

16 lines
201 B
Nix
Raw Normal View History

2023-12-11 01:02:18 +01:00
{ pkgs
, config
, lib
, inputs
, ...
}: {
services.macos-ventura = {
enable = true;
openFirewall = true;
vncListenAddr = "0.0.0.0";
threads = 8;
cores = 4;
mem = "8G";
};
}