nixos/installation-device: Move systemPackages additions to profiles/base

Other package additions are there as well.
This commit is contained in:
Tuomas Tynkkynen 2018-10-27 13:42:03 +03:00
parent f4c02202ca
commit cc92fc0a83
2 changed files with 3 additions and 3 deletions

View file

@ -19,6 +19,9 @@
pkgs.cryptsetup # needed for dm-crypt volumes
pkgs.mkpasswd # for generating password files
# Some text editors.
pkgs.vim
# Some networking tools.
pkgs.fuse
pkgs.fuse3

View file

@ -87,9 +87,6 @@ with lib;
# console less cumbersome if the machine has a public IP.
networking.firewall.logRefusedConnections = mkDefault false;
environment.systemPackages = [ pkgs.vim ];
# Allow the user to log in as root without a password.
users.users.root.initialHashedPassword = "";
};