install-devices: add vim

This moves vim to the install-device profile to add vim to netboot, too.

Fixes #20013 (see discussion there for further information)

Changed files
+1 -5
nixos
modules
-5
nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
···
imports =
[ ./installation-cd-base.nix
];
-
-
environment.systemPackages =
-
[
-
pkgs.vim
-
];
}
+1
nixos/modules/profiles/installation-device.nix
···
boot.consoleLogLevel = mkDefault 7;
networking.firewall.logRefusedConnections = mkDefault false;
+
environment.systemPackages = [ pkgs.vim ];
};
}