2021-03-18 23:51:38 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
{ depot, lib, pkgs, rebuilder, config, ... }:
|
|
|
|
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-04-29 12:16:49 +00:00
|
|
|
depot.ops.nixos.systems.howl
|
2021-03-28 13:10:27 +00:00
|
|
|
];
|
2021-03-18 23:51:38 +00:00
|
|
|
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
}
|