Change-Id: I672ad0898b2ef6a11f8bc9233da0ded4a296fe0e Reviewed-on: https://cl.tvl.fyi/c/depot/+/5686 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
18 lines
494 B
Nix
18 lines
494 B
Nix
{ depot, lib, pkgs, ... }:
|
|
|
|
let
|
|
configuration = { ... }: {
|
|
imports = [
|
|
(pkgs.path + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
|
|
(pkgs.path + "/nixos/modules/installer/cd-dvd/channel.nix")
|
|
];
|
|
|
|
networking.networkmanager.enable = true;
|
|
networking.useDHCP = false;
|
|
networking.firewall.enable = false;
|
|
networking.wireless.enable = lib.mkForce false;
|
|
};
|
|
in
|
|
(depot.third_party.nixos {
|
|
inherit configuration;
|
|
}).config.system.build.isoImage
|