forked from lix-project/nixos-module
19 lines
375 B
Nix
19 lines
375 B
Nix
{ nixos, lix-module }:
|
|
let
|
|
configs = {
|
|
it-builds = nixos ({ ... }: {
|
|
imports = [ lix-module ];
|
|
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;
|
|
}
|