10 lines
173 B
Nix
10 lines
173 B
Nix
{ lib, ... }: {
|
|
config = {
|
|
nixpkgs = {
|
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"xow_dongle-firmware"
|
|
];
|
|
};
|
|
};
|
|
}
|