mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
31 lines
418 B
Nix
31 lines
418 B
Nix
{ lib, ... }:
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate = lib.mkDefault (
|
|
pkg:
|
|
let
|
|
name = lib.getName pkg;
|
|
in
|
|
builtins.elem name [
|
|
"languagetool"
|
|
|
|
"vscode"
|
|
"code"
|
|
|
|
"tampermonkey"
|
|
|
|
"aseprite"
|
|
|
|
"posy-cursors"
|
|
|
|
"discord"
|
|
|
|
"duckstation"
|
|
]
|
|
|| builtins.any (lib.flip lib.hasInfix name) [
|
|
# Scanner
|
|
"brscan5"
|
|
|
|
"steam"
|
|
]
|
|
);
|
|
}
|