diff --git a/nixos/hosts/asahi-live.nix b/nixos/hosts/asahi-live.nix index 174f880..0e142d5 100644 --- a/nixos/hosts/asahi-live.nix +++ b/nixos/hosts/asahi-live.nix @@ -1,4 +1,8 @@ -{pkgs, ...}: { +{ + pkgs, + config, + ... +}: { boot.postBootCommands = let inherit (config.hardware.asahi.pkgs) asahi-fwextract; in '' diff --git a/nixos/hosts/live.nix b/nixos/hosts/live.nix index 7bfe57d..ecea4cd 100644 --- a/nixos/hosts/live.nix +++ b/nixos/hosts/live.nix @@ -1,4 +1,9 @@ -{pkgs, ...}: { +{ + pkgs, + lib, + config, + ... +}: { networking.hostName = "nixos-live"; isoImage.makeEfiBootable = true;