depot/ops/nixos/installcd/default.nix

23 lines
542 B
Nix
Raw Normal View History

2024-01-15 01:08:01 +00:00
# SPDX-FileCopyrightText: 2024 Luke Granger-Brown <depot@lukegb.com>
2021-03-18 23:51:38 +00:00
#
# SPDX-License-Identifier: Apache-2.0
{ 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";
isoImage.storeContents = [
2024-03-25 19:13:05 +00:00
depot.ops.nixos.systems.rexxar
];
2021-03-18 23:51:38 +00:00
system.disableInstallerTools = false;
2024-03-01 14:23:22 +00:00
system.stateVersion = "24.05";
2021-03-18 23:51:38 +00:00
}