14 lines
286 B
Nix
14 lines
286 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, ...
|
|
}:
|
|
|
|
(pkgs.nixos [
|
|
../module.nix
|
|
../example/simple-efi.nix
|
|
({ config, ... }: {
|
|
documentation.enable = false;
|
|
system.stateVersion = config.system.nixos.version;
|
|
disko.checkScripts = true;
|
|
})
|
|
]).config.system.build.diskoImagesScript
|