mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-21 14:54:49 +01:00
use jhovold for iso
This commit is contained in:
parent
dec99e46ed
commit
e0cc11fd56
11
flake.nix
11
flake.nix
|
@ -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";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue