fix pmbootstrap

This commit is contained in:
Daniel Langbein 2024-11-21 21:21:53 +01:00
parent 72c1d06c14
commit 30537331ec
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -1,16 +1,15 @@
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
pmbootstrap
imports = [
# Provides fastboot and udev rules
./android.nix
];
};
# For netboot, port 9999 has to be opened.
#networking.firewall.allowedTCPPorts = [ 9999 ];
# Sadly, the tool does not detect the phone. Not sure why. I double checked that port 9999 is open:
# sudo iptables -nL
# #=> Chain nixos-fw (1 references)
# #=> target prot opt source destination
# #=> nixos-fw-accept 6 -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:9999
environment.systemPackages = with pkgs; [
unstable.pmbootstrap
];
# Required to serve the postmarketOS image via netboot.
# https://wiki.postmarketos.org/wiki/Netboot#Usage
networking.firewall.allowedTCPPorts = [ 9999 ];
}