nix-git/modules/pmbootstrap.nix

16 lines
340 B
Nix
Raw Normal View History

2023-10-08 12:37:56 +02:00
{ config, pkgs, ... }:
{
2024-11-21 21:21:53 +01:00
imports = [
# Provides fastboot and udev rules
./android.nix
];
2023-10-08 12:37:56 +02:00
2024-11-21 21:21:53 +01:00
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 ];
2023-10-08 12:37:56 +02:00
}