mirror of
https://github.com/ciderale/nixos-utm.git
synced 2024-12-14 11:37:37 +00:00
140ee090f5
this allows to define a custom nix configuration file to set the UTM VM configuration parameters. The content of this nix file is merged with the config.plist of the VM. The merging is done using json representation.
19 lines
323 B
Nix
19 lines
323 B
Nix
{
|
|
Display = [
|
|
{
|
|
HeightPixels = 1200;
|
|
WidthPixels = 1920;
|
|
PixelsPerInch = 226;
|
|
}
|
|
];
|
|
System = {MemorySize = 4096;};
|
|
Virtualization = {
|
|
Audio = true;
|
|
Balloon = true;
|
|
ClipboardSharing = true;
|
|
Keyboard = true;
|
|
Pointer = true;
|
|
Rosetta = true;
|
|
Trackpad = true;
|
|
};
|
|
}
|