mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
14 lines
288 B
Nix
14 lines
288 B
Nix
{
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../nixosModules/extra/macbook-swap-fn-ctrl.nix
|
|
../../configurations/tungsten/nixos/hardware-configuration.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"broadcom-sta" # wifi driver
|
|
];
|
|
}
|