Make the minimal iso not use profile/minimal, +vim

The profile minimal has several drawbacks: no man pages, unusual 'dbus'
lib that makes many X11 pieces to rebuild, etc.

With xz compression in the squashfs, despite these additions, the iso is
smaller than what it was in 16.09.

(cherry picked from commit e0078b2cb5)
This commit is contained in:
Lluís Batlle i Rossell
2016-12-28 16:05:30 +01:00
parent 64eaa7eb29
commit 0ae95d808e

View File

@@ -1,11 +1,15 @@
# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
{
imports =
[ ./installation-cd-base.nix
../../profiles/minimal.nix
];
environment.systemPackages =
[
pkgs.vim
];
}