aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-07-19 14:31:16 +0200
committerKarel Kočí <cynerd@email.cz>2022-07-19 14:31:16 +0200
commita914d97e00e10ae387f852955618cb1be3fe1dd0 (patch)
tree6bd3a48dc198896ed034d94976021adc67838420 /nixos
parent12747ad801b7f4cf90a1716db5547bb0fb3b72a0 (diff)
downloadnixturris-a914d97e00e10ae387f852955618cb1be3fe1dd0.tar.gz
nixturris-a914d97e00e10ae387f852955618cb1be3fe1dd0.tar.bz2
nixturris-a914d97e00e10ae387f852955618cb1be3fe1dd0.zip
nixos: fix tarball content
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/turris-tarball.nix28
1 files changed, 14 insertions, 14 deletions
diff --git a/nixos/modules/turris-tarball.nix b/nixos/modules/turris-tarball.nix
index 5a1f672..87c4fb9 100644
--- a/nixos/modules/turris-tarball.nix
+++ b/nixos/modules/turris-tarball.nix
@@ -43,19 +43,6 @@ let
}
'';
};
- system.extraSystemBuilderCmds = ''
- mkdir -p $out/boot/extlinux
- cat >$out/boot/extlinux/extlinux.conf <<EOF
- DEFAULT nixos-default
- TIMEOUT 0
- LABEL nixos-default
- MENU LABEL NixOS - Default
- LINUX /run/current-system/kernel
- FDTDIR /run/current-system/dtbs
- INITRD /run/current-system/initrd
- APPEND init=${config.system.build.toplevel}/init ${builtins.toString config.boot.kernelParams}
- EOF
- '';
}];
};
@@ -65,7 +52,20 @@ in {
contents = [
{
source = "${tarballVariant.config.system.build.toplevel}/.";
- target = "./";
+ target = "./run/current-system";
+ }
+ {
+ source = pkgs.writeText "tarball-extlinux" ''
+ DEFAULT nixturris-tarball
+ TIMEOUT 0
+ LABEL nixturris-tarball
+ MENU LABEL NixOS Turris - Tarball
+ LINUX /run/current-system/kernel
+ FDTDIR /run/current-system/dtbs
+ INITRD /run/current-system/initrd
+ APPEND init=${config.system.build.toplevel}/init ${builtins.toString config.boot.kernelParams}
+ '';
+ target = "./boot/extlinux/extlinux.conf";
}
];