depot/nixos/modules/system/activation/no-clone.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
156 B
Nix
Raw Normal View History

{ lib, ... }:
with lib;
{
boot.loader.grub.device = mkOverride 0 "nodev";
specialisation = mkOverride 0 {};
isSpecialisation = mkOverride 0 true;
}