mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 11:17:17 +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
|
||||
inherit (config.hardware.asahi.pkgs) asahi-fwextract;
|
||||
in ''
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
networking.hostName = "nixos-live";
|
||||
|
||||
isoImage.makeEfiBootable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue