be69799f35
svn path=/nixos/trunk/; revision=34164
14 lines
416 B
Nix
14 lines
416 B
Nix
# This configuration is not made to figure inside the module-list.nix to
|
|
# allow clone of the first level.
|
|
{pkgs, ...}:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
boot.loader.grub.device = mkOverrideTemplate 0 {} "nodev";
|
|
# undefined the obsolete name of the previous option.
|
|
boot.grubDevice = mkOverrideTemplate 0 {} pkgs.lib.mkNotdef;
|
|
nesting.children = mkOverrideTemplate 0 {} [];
|
|
nesting.clone = mkOverrideTemplate 0 {} [];
|
|
}
|