summaryrefslogtreecommitdiffstats
path: root/common/unfree.nix
blob: b07b1512bcf5bfec239a208125e360a3aa8bb62c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"

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