nixos-module/test-nixos.nix

18 lines
343 B
Nix
Raw Normal View History

{ nixos, lix-module }:
let
configs = {
it-builds = nixos ({ ... }: {
documentation.enable = false;
fileSystems."/".device = "ignore-root-device";
boot.loader.grub.enable = false;
system.stateVersion = "24.05";
});
};
in
{
inherit configs;
it-builds = configs.it-builds.config.system.build.toplevel;
}