06bfb319fe
does the same as nesting.children except that each configuration inherits from the top-level configuration. svn path=/nixos/trunk/; revision=21663
14 lines
379 B
Nix
14 lines
379 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 = mkOverride 0 {} "";
|
|
# undefined the obsolete name of the previous option.
|
|
boot.grubDevice = mkOverride 0 {} pkgs.lib.mkNotdef;
|
|
nesting.children = mkOverride 0 {} [];
|
|
nesting.clone = mkOverride 0 {} [];
|
|
}
|