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

    # actually MPL
    # TODO: remove once this is fixed
    "mpv-thumbfast"
  ];
}