16 lines
201 B
Nix
16 lines
201 B
Nix
|
{ pkgs
|
||
|
, config
|
||
|
, lib
|
||
|
, inputs
|
||
|
, ...
|
||
|
}: {
|
||
|
services.macos-ventura = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
vncListenAddr = "0.0.0.0";
|
||
|
threads = 8;
|
||
|
cores = 4;
|
||
|
mem = "8G";
|
||
|
};
|
||
|
}
|