Add kexec-bundle package to flake
This commit is contained in:
parent
e9fce22b71
commit
aa8afd4d5d
17
flake.nix
17
flake.nix
|
@ -169,6 +169,23 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
packages = {
|
||||||
|
kexec-bundle = (nixpkgs.lib.nixosSystem {
|
||||||
|
inherit system;
|
||||||
|
|
||||||
|
modules = [
|
||||||
|
./modules/pubkeys.nix
|
||||||
|
./modules/ssh.nix
|
||||||
|
|
||||||
|
({ modulesPath, ... }: {
|
||||||
|
imports = [
|
||||||
|
(modulesPath + "/installer/netboot/netboot-minimal.nix")
|
||||||
|
];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}).config.system.build.kexecTree;
|
||||||
|
};
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = (with pkgs; [
|
buildInputs = (with pkgs; [
|
||||||
black
|
black
|
||||||
|
|
Loading…
Reference in a new issue