16 lines
294 B
Nix
16 lines
294 B
Nix
{
|
|
modulesPath,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf (config?isoImage) {
|
|
# TODO: do i really need to import ALL of this?
|
|
imports = [(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")];
|
|
|
|
environment.systemPackages = [
|
|
pkgs.neovim
|
|
];
|
|
};
|
|
}
|