summaryrefslogtreecommitdiffstats
path: root/common/unfree.nix
blob: efab0b36353f1f20363c37ac546446678d797bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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-run"
    "steam-runtime"
  ];
}