oizys/modules/iso.nix

6 lines
169 B
Nix
Raw Normal View History

2024-08-10 15:50:20 -05:00
{ pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
environment.systemPackages = (with pkgs; [ neovim ]);
}