Add sof-firmware for lappy only.

This commit is contained in:
jay
2025-06-29 14:17:33 -04:00
parent 5b975d01b4
commit 097bc0ef7e
2 changed files with 9 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./filesystems.nix
./programs/sof-firmware.nix
];
# Use the systemd-boot EFI boot loader.

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = [
pkgs.sof-firmware
];
}