nixpkgs/tests/test-nixos-install-from-cd/configuration-iso.nix
Nicolas Pierron c9dc3651da Replace mkOverride by its alias mkOverrideTemplate to remove the unused
template argument of mkOverride later.

svn path=/nixos/trunk/; revision=23631
2010-09-03 19:10:59 +00:00

27 lines
616 B
Nix

# configuration used to build ISO used to install NixOS when running NixOS kvm installation test
# The configuration is prebuild before starting the vm because starting the vm
# causes some overhead.
{pkgs, config, ...}:
let
doOverride = pkgs.lib.mkOverrideTemplate 0 {};
in
{
# make system boot and accessible:
require = [ ./module-insecure.nix
../../modules/installer/cd-dvd/installation-cd-minimal.nix
];
fonts = {
enableFontConfig = false;
};
boot.loader.grub.timeout = doOverride 0;
boot.loader.grub.default = 2;
boot.loader.grub.version = doOverride 2;
}