about summary refs log tree commit diff
path: root/nixos/modules/system/activation/no-clone.nix
blob: c9ab691ce477ab190c58c8762145497ba868d92f (plain) (blame)
1
2
3
4
5
6
7
8
9
{pkgs, ...}:

with pkgs.lib;

{
  boot.loader.grub.device = mkOverride 0 "nodev";
  nesting.children = mkOverride 0 [];
  nesting.clone = mkOverride 0 [];
}