trying to get the pi image working.

This commit is contained in:
Gabe Venberg 2024-08-02 23:36:23 -05:00
parent e2bf47d268
commit 304db5a4e6
2 changed files with 14 additions and 1 deletions

View file

@ -89,6 +89,13 @@ inputs.nixpkgs.lib.nixosSystem {
# Or disable the firewall altogether.
# networking.firewall.enable = false;
boot.supportedFilesystems.zfs = lib.mkForce false;
boot.kernelParams = [
"console=ttyS1,115200n8"
];
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -24,7 +24,6 @@
...
}: {
imports = ["${modulesPath}/installer/sd-card/sd-image-aarch64.nix"];
boot.supportedFilesystems.zfs = lib.mkForce false;
hardware.enableRedistributableFirmware = true;
host = {
user = "gabe";
@ -90,6 +89,13 @@
# Or disable the firewall altogether.
# networking.firewall.enable = false;
boot.supportedFilesystems.zfs = lib.mkForce false;
boot.kernelParams = [
"console=ttyS1,115200n8"
];
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave