iso-cd: fix by overruling conflicting custom configuration

This commit is contained in:
David Arnold 2021-01-25 18:40:39 -05:00
parent 28ccf4f3f9
commit 33bcf093b7
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08

View file

@ -29,6 +29,8 @@ let
(nixos + "/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix")
({ config, ... }: {
isoImage.isoBaseName = "nixos-" + config.networking.hostName;
networking.networkmanager.enable = lib.mkForce false; # confilcts with networking.wireless which might be slightly more useful on a stick
networking.wireless.iwd.enable = lib.mkForce false; # confilcts with networking.wireless
})
];
}