summary refs log tree commit diff
path: root/nixos/modules/system/activation
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2022-01-14 18:49:27 +0100
committerGitHub <noreply@github.com>2022-01-14 18:49:27 +0100
commit2bf5958169ab5ac8871d3f3b9b1d6114de5376f2 (patch)
treec304e49e167ca83e9b496b17481f13ed57ecae65 /nixos/modules/system/activation
parent632ca37b278832e605a7b4721d84a2ad63749f82 (diff)
parenta2710255c988de1f8ab17edea20f13f8b6c70efe (diff)
downloadnixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar.gz
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar.bz2
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar.lz
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar.xz
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.tar.zst
nixpkgs-2bf5958169ab5ac8871d3f3b9b1d6114de5376f2.zip
Merge pull request #151082 from hercules-ci/nixos-cleanup-vmWithBootLoader
nixos: turn vmWithBootLoader into option (`nixos-rebuild build-vm`)
Diffstat (limited to 'nixos/modules/system/activation')
-rw-r--r--nixos/modules/system/activation/top-level.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/activation/top-level.nix b/nixos/modules/system/activation/top-level.nix
index 2efe0f05e0c..1c588ff9691 100644
--- a/nixos/modules/system/activation/top-level.nix
+++ b/nixos/modules/system/activation/top-level.nix
@@ -148,7 +148,7 @@ in
     system.build = mkOption {
       internal = true;
       default = {};
-      type = types.attrs;
+      type = types.lazyAttrsOf types.unspecified;
       description = ''
         Attribute set of derivations used to setup the system.
       '';