aboutsummaryrefslogtreecommitdiff
path: root/modules/nonfree.nix
blob: ebd332c342fbd5b82dfe4c40e75fcf553a09f34e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, lib, ... }:
{
  nixpkgs.config.allowUnfreePredicate =
    pkg:
    builtins.elem (lib.getName pkg) [
      "steam"
      "steam-run"
      "steam-unwrapped"
    ];
}