2021-03-18 23:51:38 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-01-23 16:57:20 +00:00
|
|
|
{ depot, lib, pkgs, config, ... }:
|
2021-03-18 23:51:38 +00:00
|
|
|
let
|
|
|
|
inherit (depot.ops) secrets;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
../../../third_party/nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
isoImage.isoName = lib.mkForce "nixos-${depot.version}-${pkgs.stdenv.hostPlatform.system}.iso";
|
|
|
|
|
2021-03-28 13:10:27 +00:00
|
|
|
isoImage.storeContents = [
|
2021-12-23 04:11:39 +00:00
|
|
|
depot.ops.nixos.systems.bvm-logger
|
2021-03-28 13:10:27 +00:00
|
|
|
];
|
2021-03-18 23:51:38 +00:00
|
|
|
|
2021-12-17 01:28:39 +00:00
|
|
|
system.stateVersion = "21.11";
|
2021-03-18 23:51:38 +00:00
|
|
|
}
|