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)
This commit is contained in:
Robin Gloster 2017-01-18 17:54:42 +01:00
parent 460b43dbfe
commit f4f4200d9a
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882
2 changed files with 1 additions and 5 deletions

View file

@ -7,9 +7,4 @@
imports =
[ ./installation-cd-base.nix
];
environment.systemPackages =
[
pkgs.vim
];
}

View file

@ -76,5 +76,6 @@ with lib;
boot.consoleLogLevel = mkDefault 7;
networking.firewall.logRefusedConnections = mkDefault false;
environment.systemPackages = [ pkgs.vim ];
};
}