{ pkgs , lib , config , inputs , ... }: let cfg = config.phone; in { imports = [ "${inputs.mobile-nixos}/modules/quirks/qualcomm/sdm845-modem.nix" "${inputs.mobile-nixos}/modules/quirks/audio.nix" ]; options.phone = { adb.enable = lib.mkEnableOption "adb"; rndis.enable = lib.mkEnableOption "rndis" // { default = true; }; buffyboard.enable = lib.mkOption { type = lib.types.bool; default = true; }; }; config = lib.mkMerge [ { hardware.enableRedistributableFirmware = true; mobile.quirks.qualcomm.sdm845-modem.enable = true; mobile.quirks.audio.alsa-ucm-meld = true; environment.systemPackages = [ pkgs.alsa-ucm-conf-enchilada ]; systemd.services.q6voiced = { description = "QDSP6 driver daemon"; after = [ "ModemManager.service" "dbus.socket" ]; wantedBy = [ "ModemManager.service" ]; requires = [ "dbus.socket" ]; serviceConfig.ExecStart = "${pkgs.q6voiced}/bin/q6voiced hw:0,6"; }; # TODO when testing PipeWire instead of PulseAudio, the following is needed: # https://gitlab.freedesktop.org/pipewire/wireplumber/-/blob/master/docs/rst/daemon/configuration/migration.rst # https://gitlab.com/postmarketOS/pmaports/-/tree/master/device/community/soc-qcom-sdm845/ /*systemd.user.services.wireplumber.environment.WIREPLUMBER_CONFIG_DIR = pkgs.runCommand "wireplumber-config" {} '' cp -a "${pkgs.wireplumber}/share/wireplumber" "$out" chmod +w "$out" "$out/main.lua.d" ln -s ${pkgs.fetchurl { url = "https://gitlab.com/postmarketOS/pmaports/-/raw/0aa9524204e9c9c002c860b87c972bc2ebf025f3/device/community/soc-qcom-sdm845/51-qcom-sdm845.lua"; hash = "sha256-56oNJJyuZZe1Iig1xskDuyazw3PbRZtmU/YRFUTqjwk="; }} "$out/main.lua.d/51-qcom-sdm845.lua" ''; systemd.services.wireplumber.environment.WIREPLUMBER_CONFIG_DIR = config.systemd.user.services.wireplumber.environment.WIREPLUMBER_CONFIG_DIR;*/ networking.modemmanager.enable = !config.networking.networkmanager.enable; services.udev.extraRules = '' SUBSYSTEM=="input", KERNEL=="event*", ENV{ID_INPUT}=="1", SUBSYSTEMS=="input", ATTRS{name}=="spmi_haptics", TAG+="uaccess", ENV{FEEDBACKD_TYPE}="vibra" SUBSYSTEM=="misc", KERNEL=="fastrpc-*", ENV{ACCEL_MOUNT_MATRIX}+="-1, 0, 0; 0, -1, 0; 0, 0, -1" ''; services.upower = { enable = true; percentageLow = 10; percentageCritical = 5; percentageAction = 3; criticalPowerAction = "PowerOff"; }; hardware.firmware = lib.mkAfter [ pkgs.firmware-oneplus-sdm845 ]; boot.kernelPackages = lib.mkForce (pkgs.linuxPackagesFor pkgs.linux_enchilada_ccache); hardware.deviceTree.enable = true; hardware.deviceTree.name = "qcom/sdm845-oneplus-enchilada.dtb"; # loglevel=7 console=ttyMSM0,115200 is a way to delay boot # see https://gitlab.freedesktop.org/drm/msm/-/issues/46 boot.consoleLogLevel = 7; boot.kernelParams = [ "console=ttyMSM0,115200" "console=tty0" "dtb=/${config.hardware.deviceTree.name}" ]; boot.loader.systemd-boot.extraFiles.${config.hardware.deviceTree.name} = "${config.hardware.deviceTree.package}/${config.hardware.deviceTree.name}"; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "firmware-oneplus-sdm845" "firmware-oneplus-sdm845-xz" ]; system.build.uboot = pkgs.ubootImageEnchilada; boot.initrd.includeDefaultModules = false; boot.initrd.availableKernelModules = [ "sd_mod" "usbhid" "ehci_hcd" "ohci_hcd" "xhci_hcd" "uhci_hcd" "ehci_pci" "ohci_pci" "xhci_pci" "hid_generic" "hid_lenovo" "hid_apple" "hid_roccat" "hid_logitech_hidpp" "hid_logitech_dj" "hid_microsoft" "hid_cherry" ]; boot.initrd.kernelModules = [ "i2c_qcom_geni" "rmi_core" "rmi_i2c" "qcom_spmi_haptics" "dm_mod" ]; } (lib.mkIf cfg.buffyboard.enable { boot.initrd.kernelModules = [ "uinput" "evdev" ]; boot.initrd.extraUtilsCommands = '' copy_bin_and_libs ${pkgs.buffyboard}/bin/buffyboard cp -a ${pkgs.libinput.out}/share $out/ ''; boot.initrd.extraUdevRulesCommands = '' cp -v ${config.systemd.package}/lib/udev/rules.d/60-input-id.rules $out/ cp -v ${config.systemd.package}/lib/udev/rules.d/60-persistent-input.rules $out/ cp -v ${config.systemd.package}/lib/udev/rules.d/70-touchpad.rules $out/ ''; boot.initrd.preLVMCommands = '' mkdir -p /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.libinput.name}/ ln -s "$(dirname "$(dirname "$(which buffyboard)")")"/share /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.libinput.name}/ buffyboard 2>/dev/null & ''; boot.initrd.postMountCommands = '' pkill -x buffyboard ''; common.gettyAutologin = true; systemd.services.buffyboard = { description = "buffyboard"; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.buffyboard}/bin/buffyboard"; Restart = "always"; RestartSec = "1"; }; }; security.sudo.extraRules = [ { groups = [ "users" ]; commands = [ { command = "/run/current-system/sw/bin/systemctl stop buffyboard"; options = [ "SETENV" "NOPASSWD" ]; } { command = "/run/current-system/sw/bin/systemctl start buffyboard"; options = [ "SETENV" "NOPASSWD" ]; } ]; } ]; }) (lib.mkIf cfg.rndis.enable { boot.initrd.kernelModules = [ "configfs" "libcomposite" ]; boot.specialFileSystems = { "/sys/kernel/config" = { device = "configfs"; fsType = "configfs"; options = [ "nosuid" "noexec" "nodev" ]; }; }; boot.initrd.preLVMCommands = '' mkdir -p /sys/kernel/config/usb_gadget/g1/strings/0x409 cd /sys/kernel/config/usb_gadget/g1 echo 0x18D1 > idVendor echo 0xD001 > idProduct echo oneplus-enchilada > strings/0x409/product echo NixOS > strings/0x409/manufacturer echo 0123456789 > strings/0x409/serialnumber mkdir -p configs/c.1/strings/0x409 echo "USB network" > configs/c.1/strings/0x409/configuration mkdir -p functions/ncm.usb0 || mkdir -p functions/rndis.usb0 ln -s functions/ncm.usb0 configs/c.1/ || ln -s functions/rndis.usb0 configs/c.1/ ls /sys/class/udc/ | head -n1 > UDC cd / ifconfig rndis0 172.16.42.1 || ifconfig usb0 172.16.42.1 || ifconfig eth0 172.16.42.1 ''; boot.initrd.network.enable = true; boot.initrd.network.udhcpc.enable = false; boot.initrd.network.ssh = { enable = true; port = 22; authorizedKeys = config.users.users.root.openssh.authorizedKeys.keys; hostKeys = [ "/secrets/initrd/ssh_host_ed25519_key" "/secrets/initrd/ssh_host_rsa_key" ]; }; }) (lib.mkIf cfg.adb.enable { boot.initrd.kernelModules = [ "configfs" "libcomposite" "g_ffs" ]; boot.specialFileSystems = { "/sys/kernel/config" = { device = "configfs"; fsType = "configfs"; options = [ "nosuid" "noexec" "nodev" ]; }; }; boot.initrd.extraUtilsCommands = '' copy_bin_and_libs ${pkgs.adbd}/bin/adbd cp -pv ${pkgs.glibc.out}/lib/libnss_files.so.* $out/lib ''; boot.initrd.preLVMCommands = '' mkdir -p /sys/kernel/config/usb_gadget/g1/strings/0x409 cd /sys/kernel/config/usb_gadget/g1 echo 0x18D1 > idVendor echo 0xD001 > idProduct echo oneplus-enchilada > strings/0x409/product echo NixOS > strings/0x409/manufacturer echo 0123456789 > strings/0x409/serialnumber mkdir -p configs/c.1/strings/0x409 echo adb > configs/c.1/strings/0x409/configuration mkdir -p functions/ffs.adb ln -s functions/ffs.adb configs/c.1/adb mkdir -p /dev/usb-ffs/adb mount -t functionfs adb /dev/usb-ffs/adb adbd & ls /sys/class/udc/ | head -n1 > UDC cd / ''; boot.initrd.postMountCommands = '' pkill -x adbd ''; systemd.services.adbd = { description = "adb daemon"; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.adbd}/bin/adbd"; Restart = "always"; }; }; }) ]; }