Add kexec generator

This commit is contained in:
SebastianStork 2025-05-10 21:01:41 +02:00
parent 27346b6113
commit dd4fee5c53

View file

@ -35,6 +35,12 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ ./configuration.nix ]; modules = [ ./configuration.nix ];
}; };
kexec = inputs.nixos-generators.nixosGenerate {
format = "kexec";
inherit system;
specialArgs = { inherit inputs; };
modules = [ ./configuration.nix ];
};
}; };
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {