mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-30 01:39:36 +03:00
14 lines
369 B
Nix
14 lines
369 B
Nix
{ config, lib, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
"${toString modulesPath}/installer/cd-dvd/installation-cd-base.nix"
|
|
];
|
|
|
|
# override installation-cd-base and enable wpa and sshd start at boot
|
|
systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ];
|
|
virtualisation.hypervGuest.enable = true;
|
|
|
|
formatAttr = "isoImage";
|
|
filename = "*.iso";
|
|
}
|