From dd4fee5c53d69fa25ac6de2398e764d3991cb946 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sat, 10 May 2025 21:01:41 +0200 Subject: [PATCH] Add kexec generator --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 31941a8..778457e 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,12 @@ specialArgs = { inherit inputs; }; modules = [ ./configuration.nix ]; }; + kexec = inputs.nixos-generators.nixosGenerate { + format = "kexec"; + inherit system; + specialArgs = { inherit inputs; }; + modules = [ ./configuration.nix ]; + }; }; devShells.default = pkgs.mkShell {