| 9 Dec 2025 |
okamis | * Where can I read up on that? there is the config virtual.diskSize, but It doesnt affect /tmp/shared | 15:24:38 |
K900 | /tmp/shared specifically is backed by a temporary directory, which is probably backed by tmpfs, which is backed by RAM | 15:25:39 |
K900 | With build-vm you should not have a /tmp/shared at all unless you've configured it explicitly | 15:25:53 |
okamis | with build-vm I did get a /tmp/shared, but my confusion is more why I cannot see anything in /tmp/shared, I just see it consuming disk | 15:27:43 |
K900 | See anything where? | 15:28:12 |
okamis | ´ls /tmp/shared´ gives me empty dir | 15:28:28 |
okamis | * 'ls /tmp/shared' gives me empty dir | 15:28:40 |
K900 | You might want ls -a | 15:28:49 |
okamis | * 'ls -a /tmp/shared' gives me empty dir | 15:28:57 |
K900 | If it's still empty, I'm guessing this is just qemu misreporting filesystem size for shared folders | 15:29:14 |
okamis | thank you for sharing your wizdom, bye-bye | 15:30:25 |
| 11 Dec 2025 |
| suua joined the room. | 16:11:27 |
| 13 Dec 2025 |
l0b0 | How do I disable the NixOS "Tour" popup when starting GNOME for the first time? I had a look at nixpkgs/nixos/tests/gnome.nix, but it's not obvious what they do (or even whether they dismiss or disable the popup). | 13:01:52 |
l0b0 | * How do I disable the NixOS "Tour" popup when starting GNOME for the first time? I had a look at nixpkgs/nixos/tests/gnome.nix, but it's not obvious what they do (or even whether they dismiss or disable the popup). Update: nodes.machine.environment.gnome.excludePackages = [ pkgs.gnome-tour ]; seems to have taken care of it. | 13:04:54 |
l0b0 | How do I send the Super key to GNOME in a test? send_key doesn't seem to support it. | 13:39:15 |
l0b0 | * How do I send the Super key to GNOME in a test? send_key doesn't seem to support it. Update: It doesn't seem to be documented anywhere, but an old forum post had the answer: meta_l or meta_r. | 13:41:58 |
l0b0 | Why does machine.wait_for_text(r"some regex", 10) never seem to finish? It prints "machine: waiting for some regex to appear on screen", then continues to print system logs, and never exits. This is the last line of code in the test, so it should exit after 10 seconds. | 13:48:24 |
l0b0 | * Why does machine.wait_for_text(r"some regex", 10) never seem to time out? It prints "machine: waiting for some regex to appear on screen", then continues to print system logs, and never exits. This is the last line of code in the test, so it should exit after 10 seconds. | 14:11:01 |
l0b0 | How do I view screenshot(filename) results locally? My test prints making screenshot /nix/store/yibqm6bh97j7842d8mz5n9zi7ff213ac-vm-test-run-purge-missing-pictures-service/notifications.png, but that path is not available locally, even while the test is still running. | 15:24:56 |