mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
f4f4200d9a
This moves vim to the install-device profile to add vim to netboot, too. Fixes #20013 (see discussion there for further information)
11 lines
183 B
Nix
11 lines
183 B
Nix
# This module defines a small NixOS installation CD. It does not
|
|
# contain any graphical stuff.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ ./installation-cd-base.nix
|
|
];
|
|
}
|