snix/users/aspen/system/system/iso.nix
Vincent Ambo ea0f2d1130 chore(3p/sources): bump channels & overlays (2024-10-12)
* amend keycloak configuration as per upgrade guide for their latest, most
  innovative breaking changes.

  https://www.keycloak.org/docs/latest/upgrading/index.html#deprecated-proxy-option
* users/aspen: remove deprecated noXlibs option. This option has no alternative.

Change-Id: I49f45e38cda6b01ddf6f014b7b1c43972b76629f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12601
Tested-by: BuildkiteCI
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: tazjin <tazjin@tvl.su>
2024-10-23 09:39:11 +00:00

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