mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
Adds config and lib variables to live image configs
This commit is contained in:
parent
20fec7794c
commit
e7702dff6c
2 changed files with 11 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
boot.postBootCommands = let
|
boot.postBootCommands = let
|
||||||
inherit (config.hardware.asahi.pkgs) asahi-fwextract;
|
inherit (config.hardware.asahi.pkgs) asahi-fwextract;
|
||||||
in ''
|
in ''
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
networking.hostName = "nixos-live";
|
networking.hostName = "nixos-live";
|
||||||
|
|
||||||
isoImage.makeEfiBootable = true;
|
isoImage.makeEfiBootable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue