use jhovold for iso

This commit is contained in:
Adam Stephens 2024-05-14 15:33:31 -04:00
parent dec99e46ed
commit e0cc11fd56
No known key found for this signature in database

View file

@ -56,13 +56,6 @@
modules = [ modules = [
self.nixosModules.default self.nixosModules.default
{
nixos-x13s = {
enable = true;
kernel = "mainline";
};
}
( (
{ modulesPath, config, ... }: { modulesPath, config, ... }:
let let
@ -70,7 +63,9 @@
in in
{ {
imports = [ "${toString modulesPath}/installer/cd-dvd/iso-image.nix" ]; imports = [ "${toString modulesPath}/installer/cd-dvd/iso-image.nix" ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixos-x13s.enable = true;
isoImage = { isoImage = {
makeEfiBootable = true; makeEfiBootable = true;
makeUsbBootable = true; makeUsbBootable = true;
@ -78,7 +73,7 @@
contents = [ contents = [
{ {
source = dtb; source = dtb;
target = "/" + dtbName; target = "/x13s.dtb";
} }
]; ];
}; };