summaryrefslogtreecommitdiffstats
path: root/common/unfree.nix
blob: 3789c9f1fa6c385d939f1fe8a653fbc255ac01a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
inputs:

{ lib, ... }:

{
  # List accepted unfree packages in a common place, since somehow the merge
  # operation of this attribute is broken
  nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
    "betterttv"
    "flagfox"

    "steam"
    "steam-original"
    "steam-runtime"
  ];
}