🔒️ plato: broadcom driver marked insecure

NOTE: maybe just remove it?
This commit is contained in:
2025-08-18 15:16:10 -04:00
parent 9fbe64a194
commit 9fa98cb111

View File

@@ -1,4 +1,9 @@
{ pkgs, config, ... }: {
pkgs,
config,
lib,
...
}:
let let
automount_opts = "uid=1000,gid=1000,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s"; automount_opts = "uid=1000,gid=1000,x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
inherit (config.sops) secrets; inherit (config.sops) secrets;
@@ -86,6 +91,12 @@ in
}; };
}; };
nixpkgs.config.allowInsecurePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"broadcom-sta" # aka “wl”
];
power.ups = { power.ups = {
enable = true; enable = true;
mode = "netserver"; mode = "netserver";