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