mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
5 lines
169 B
Nix
5 lines
169 B
Nix
{ pkgs, modulesPath, ... }:
|
|
{
|
|
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
|
|
environment.systemPackages = (with pkgs; [ neovim ]);
|
|
}
|