Monorepo for Tangled tangled.org
5

Configure Feed

Select the types of activity you want to include in your feed.

1{...}: { 2 microvm = { 3 hypervisor = "qemu"; 4 qemu.machine = "microvm"; 5 6 optimize.enable = true; 7 8 vcpu = 2; 9 # don't set to 2048, https://github.com/microvm-nix/microvm.nix/issues/171 10 mem = 4096; 11 12 interfaces = [ 13 { 14 type = "user"; 15 id = "net0"; 16 mac = "02:00:00:00:10:01"; 17 } 18 ]; 19 vsock.cid = 3; 20 21 socket = "control.socket"; 22 }; 23 24 boot.kernelModules = ["vsock_loopback"]; 25}