Adds config and lib variables to live image configs

This commit is contained in:
willemml 2023-11-06 11:33:55 -08:00
parent 20fec7794c
commit e7702dff6c
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
2 changed files with 11 additions and 2 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
boot.postBootCommands = let
inherit (config.hardware.asahi.pkgs) asahi-fwextract;
in ''

View file

@ -1,4 +1,9 @@
{pkgs, ...}: {
{
pkgs,
lib,
config,
...
}: {
networking.hostName = "nixos-live";
isoImage.makeEfiBootable = true;