From aa8afd4d5dad627d08bdd05e6f9961633fb4e888 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 20 Aug 2024 23:04:38 +0200 Subject: [PATCH] Add kexec-bundle package to flake --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/flake.nix b/flake.nix index 2e6d83d..a8618a3 100644 --- a/flake.nix +++ b/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 { buildInputs = (with pkgs; [ black