Merge pull request #37 from nix-community/ci

expose kexec installer as a nixosModule
This commit is contained in:
Jörg Thalheim 2022-12-16 11:51:39 +00:00 committed by GitHub
commit 5578356623
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
flake.nix Normal file
View file

@ -0,0 +1,7 @@
{
description = "NixOS images";
outputs = { self }: {
nixosModules.kexec-installer = ./nix/kexec-installer/module.nix;
};
}