summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-20 16:52:24 -0400
committerGitHub <noreply@github.com>2018-08-20 16:52:24 -0400
commit85cbf2e6e76706fc7c786d3a52fcf6240dd0310e (patch)
treea87a77063c32062cdeefc6cb9c41bd493d86dfd8 /nixos/modules/installer
parent27ecfd34e8b676438ae03be601bfca46c4f61b7a (diff)
downloadnixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar.gz
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar.bz2
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar.lz
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar.xz
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.tar.zst
nixlib-85cbf2e6e76706fc7c786d3a52fcf6240dd0310e.zip
nixos/netboot: Remove redundant setting
@volth tells me that is the default for `system.boot.loader.kernelFile` anyways.
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/netboot/netboot.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix
index a2c8e26f62c2..ea640173c6dd 100644
--- a/nixos/modules/installer/netboot/netboot.nix
+++ b/nixos/modules/installer/netboot/netboot.nix
@@ -28,7 +28,6 @@ with lib;
       ++ (if pkgs.stdenv.system == "aarch64-linux"
           then []
           else [ pkgs.grub2 pkgs.syslinux ]);
-    system.boot.loader.kernelFile = pkgs.stdenv.hostPlatform.platform.kernelTarget;
 
     fileSystems."/" =
       { fsType = "tmpfs";