forked from mirrors/nixpkgs
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:
parent
460b43dbfe
commit
f4f4200d9a
|
@ -7,9 +7,4 @@
|
||||||
imports =
|
imports =
|
||||||
[ ./installation-cd-base.nix
|
[ ./installation-cd-base.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages =
|
|
||||||
[
|
|
||||||
pkgs.vim
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,5 +76,6 @@ with lib;
|
||||||
boot.consoleLogLevel = mkDefault 7;
|
boot.consoleLogLevel = mkDefault 7;
|
||||||
networking.firewall.logRefusedConnections = mkDefault false;
|
networking.firewall.logRefusedConnections = mkDefault false;
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.vim ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue