The following files provide my setup for Helix on NixOS. I find it to be a nice experience (for me) when compared to the alternatives
| { | |
| "nodes": { | |
| "devenv": { | |
| "locked": { | |
| "dir": "src/modules", | |
| "lastModified": 1745750098, | |
| "owner": "cachix", | |
| "repo": "devenv", | |
| "rev": "312f0eb723d9b2a1539f175bca9f11f1e4f0a673", | |
| "type": "github" |
https://pve.proxmox.com/wiki/PCI_Passthrough
- check this
'Legacy boot' or CSM: For GPU passthrough it can help to disable this, but keep in mind that PVE has to be installed in UEFI mode, as it will not boot in BIOS mode without this enabled. The reason for disabling this is that it avoids legacy VGA initialization of installed GPUs, making them able to be re-initialized later, as required for passthrough. Most useful when trying to use passthrough in single GPU systems.
https://forum.proxmox.com/threads/gpu-passthrough-with-rtx-3090-doesnt-work-dmar-errors.120677/
PLEASE NOTE: THIS IS A WORK IN PROGRESS AND BEING ITERATIVELY UPDATED AS I LEARN MORE ON HOW POSTMARKETOS CAN BE INSTALLED AND HANGS TOGETHER WITH THE TOOLING AND PARTITIONS FOR DUAL BOOTING ON ONEPLUS6 (22 MAY 2023)
I am writing this tutorial up as someone who is comfortable in Linux, but too old to have been playing with jailbreaking phones in the last couple of decades. To that end, being a little uncomfortable with the tooling around jailbreaking (and assuming others might be too), I decided to focus a tutorial on the preliminary process before handing over to the postmarketOS wiki for the excellent documentation they have.
This post covers areas where I had problems or questions that you may also have along the process of getting a working oneplus6 phone in phosh or gnome-mobile-shell
- Decision - do I install phosh or gnome-shell on mobile?
- Start with phosh
| with import <nixpkgs> { }; | |
| let | |
| pythonPackages = python3Packages; | |
| in pkgs.mkShell rec { | |
| name = "impurePythonEnv"; | |
| venvDir = "./.venv"; | |
| buildInputs = [ | |
| # A Python interpreter including the 'venv' module is required to bootstrap | |
| # the environment. |
| # This is just a test snippet | |
| import re | |