2023-11-15 16:09:47 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
|
|
|
|
|
|
|
|
# Provide an initial copy of the NixOS channel so that the user
|
|
|
|
# doesn't need to run "nix-channel --update" first.
|
|
|
|
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
|
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
networkmanager
|
2023-11-17 21:09:42 +00:00
|
|
|
git
|
|
|
|
wget
|
|
|
|
gnumake
|
2023-11-15 16:09:47 +00:00
|
|
|
];
|
|
|
|
}
|