From 5a41d6453238bd7ceaf7c7ff193fdcf9bedda6b1 Mon Sep 17 00:00:00 2001 From: Sean Kovacs Date: Fri, 7 Nov 2025 20:55:01 -0500 Subject: [PATCH] remove asahi firmware extraction --- hosts/peach.nix | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/hosts/peach.nix b/hosts/peach.nix index 8ed8ec8..02de9d1 100644 --- a/hosts/peach.nix +++ b/hosts/peach.nix @@ -1,4 +1,11 @@ -{ config, pkgs, lib, catppuccin, ... }: { +{ + config, + pkgs, + lib, + catppuccin, + ... +}: +{ networking.hostName = "peach"; catppuccin.accent = "peach"; @@ -10,13 +17,16 @@ hardware.asahi = { enable = true; setupAsahiSound = true; - extractPeripheralFirmware = true; - peripheralFirmwareDirectory = ../firmware; + extractPeripheralFirmware = false; + # This is broken because of flake git tracking. + # I can't figure out how to make it work. + # peripheralFirmwareDirectory = ../firmware; }; - swapDevices = [{ - device = "/swapfile"; - size = 32000; # 32GB - }]; + swapDevices = [ + { + device = "/swapfile"; + size = 32000; # 32GB + } + ]; } -