mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-26 03:15:32 +03:00
Merge pull request #140 from nix-community/kexec
formats kexec: fix mutliple definition
This commit is contained in:
commit
0d02820bcd
@ -13,12 +13,12 @@ in {
|
|||||||
];
|
];
|
||||||
|
|
||||||
system.build = rec {
|
system.build = rec {
|
||||||
kexec_tarball = pkgs.callPackage "${toString modulesPath}/../lib/make-system-tarball.nix" {
|
kexec_tarball = lib.mkForce (pkgs.callPackage "${toString modulesPath}/../lib/make-system-tarball.nix" {
|
||||||
storeContents = [
|
storeContents = [
|
||||||
{ object = config.system.build.kexec_script; symlink = "/kexec_nixos"; }
|
{ object = config.system.build.kexec_script; symlink = "/kexec_nixos"; }
|
||||||
];
|
];
|
||||||
contents = [];
|
contents = [];
|
||||||
};
|
});
|
||||||
|
|
||||||
kexec_tarball_self_extract_script = pkgs.writeTextFile {
|
kexec_tarball_self_extract_script = pkgs.writeTextFile {
|
||||||
executable = true;
|
executable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user